Skip to content

Commit

Permalink
Amalgamated source for v48.1
Browse files Browse the repository at this point in the history
Change-Id: I67197b656f2008c7b45d84cbb6297787a273e814
  • Loading branch information
ddiproietto committed Oct 14, 2024
1 parent 8fc0fb0 commit 97f453d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions sdk/perfetto.cc
Original file line number Diff line number Diff line change
Expand Up @@ -41349,8 +41349,8 @@ const char* GetVersionCode();
#ifndef GEN_PERFETTO_VERSION_GEN_H_
#define GEN_PERFETTO_VERSION_GEN_H_

#define PERFETTO_VERSION_STRING() "v48.0-5d94090d4"
#define PERFETTO_VERSION_SCM_REVISION() "5d94090d42c5d078822cd16f95e48c1b4807892b"
#define PERFETTO_VERSION_STRING() "v48.1-8fc0fb096"
#define PERFETTO_VERSION_SCM_REVISION() "8fc0fb09660d380577f2a8e68131255b03a28b79"

#endif // GEN_PERFETTO_VERSION_GEN_H_
/*
Expand Down Expand Up @@ -61649,7 +61649,8 @@ class SharedMemoryWindows : public SharedMemory {
const base::ScopedPlatformHandle& handle() const { return handle_; }

// SharedMemory implementation.
void* start() const override { return start_; }
using SharedMemory::start; // Equal priority to const and non-const versions
const void* start() const override { return start_; }
size_t size() const override { return size_; }

private:
Expand Down

0 comments on commit 97f453d

Please sign in to comment.