| Index: base/debug/trace_event_win.h
|
| diff --git a/base/debug/trace_event_win.h b/base/debug/trace_event_win.h
|
| index 7d66393a7fa2ef08b487118f528c545c08dd351c..474d1f4dca8b0a990340003d3d0252cc3744dd49 100644
|
| --- a/base/debug/trace_event_win.h
|
| +++ b/base/debug/trace_event_win.h
|
| @@ -37,14 +37,14 @@ class BASE_EXPORT TraceEventETWProvider : public base::win::EtwTraceProvider {
|
| // be used for length.
|
| static void Trace(const char* name,
|
| size_t name_len,
|
| - TraceEventPhase type,
|
| + char type,
|
| const void* id,
|
| const char* extra,
|
| size_t extra_len);
|
|
|
| // Allows passing extra as a std::string for convenience.
|
| static void Trace(const char* name,
|
| - TraceEventPhase type,
|
| + char type,
|
| const void* id,
|
| const std::string& extra) {
|
| return Trace(name, -1, type, id, extra.c_str(), extra.length());
|
| @@ -53,7 +53,7 @@ class BASE_EXPORT TraceEventETWProvider : public base::win::EtwTraceProvider {
|
| // Allows passing extra as a const char* to avoid constructing temporary
|
| // std::string instances where not needed.
|
| static void Trace(const char* name,
|
| - TraceEventPhase type,
|
| + char type,
|
| const void* id,
|
| const char* extra) {
|
| return Trace(name, -1, type, id, extra, -1);
|
| @@ -75,7 +75,7 @@ class BASE_EXPORT TraceEventETWProvider : public base::win::EtwTraceProvider {
|
| // string will be used.
|
| void TraceEvent(const char* name,
|
| size_t name_len,
|
| - TraceEventPhase type,
|
| + char type,
|
| const void* id,
|
| const char* extra,
|
| size_t extra_len);
|
|
|