Skip to content

Commit

Permalink
perfetto.h: put in BuiltinClock
Browse files Browse the repository at this point in the history
  • Loading branch information
vlkale committed Sep 5, 2024
1 parent 470f378 commit b9004c0
Showing 1 changed file with 10 additions and 24 deletions.
34 changes: 10 additions & 24 deletions profiling/perfetto-connector/perfetto/perfetto.h
Original file line number Diff line number Diff line change
Expand Up @@ -6318,7 +6318,16 @@ enum TraceConfig_LockdownModeOperation : int;
enum TraceConfig_CompressionType : int;
enum TraceConfig_StatsdLogging : int;
enum TraceConfig_TriggerConfig_TriggerMode : int;
enum BuiltinClock : int;
enum BuiltinClock : int {
BUILTIN_CLOCK_UNKNOWN = 0,
BUILTIN_CLOCK_REALTIME = 1,
BUILTIN_CLOCK_REALTIME_COARSE = 2,
BUILTIN_CLOCK_MONOTONIC = 3,
BUILTIN_CLOCK_MONOTONIC_COARSE = 4,
BUILTIN_CLOCK_MONOTONIC_RAW = 5,
BUILTIN_CLOCK_BOOTTIME = 6,
BUILTIN_CLOCK_MAX_ID = 63,
};
enum DataSourceConfig_SessionInitiator : int;
enum ChromeConfig_ClientPriority : int;
enum TraceConfig_BufferConfig_FillPolicy : int;
Expand Down Expand Up @@ -19744,34 +19753,11 @@ enum AndroidLogPriority : int {
// gen_amalgamated expanded: #include "perfetto/protozero/copyable_ptr.h"
// gen_amalgamated expanded: #include "perfetto/base/export.h"

namespace perfetto {
namespace protos {
namespace gen {
enum BuiltinClock : int;
} // namespace perfetto
} // namespace protos
} // namespace gen

namespace protozero {
class Message;
} // namespace protozero

namespace perfetto {
namespace protos {
namespace gen {
enum BuiltinClock : int {
BUILTIN_CLOCK_UNKNOWN = 0,
BUILTIN_CLOCK_REALTIME = 1,
BUILTIN_CLOCK_REALTIME_COARSE = 2,
BUILTIN_CLOCK_MONOTONIC = 3,
BUILTIN_CLOCK_MONOTONIC_COARSE = 4,
BUILTIN_CLOCK_MONOTONIC_RAW = 5,
BUILTIN_CLOCK_BOOTTIME = 6,
BUILTIN_CLOCK_MAX_ID = 63,
};
} // namespace perfetto
} // namespace protos
} // namespace gen

#endif // PERFETTO_PROTOS_PROTOS_PERFETTO_COMMON_BUILTIN_CLOCK_PROTO_CPP_H_
// gen_amalgamated begin header: gen/protos/perfetto/common/commit_data_request.gen.h
Expand Down

0 comments on commit b9004c0

Please sign in to comment.