Index: content/renderer/renderer_main.cc |
=================================================================== |
--- content/renderer/renderer_main.cc (revision 84291) |
+++ content/renderer/renderer_main.cc (working copy) |
@@ -129,7 +129,7 @@ |
// mainline routine for running as the Renderer process |
int RendererMain(const MainFunctionParams& parameters) { |
- TRACE_EVENT_BEGIN_ETW("RendererMain", 0, ""); |
+ TRACE_EVENT_BEGIN("RendererMain", 0, ""); |
const CommandLine& parsed_command_line = parameters.command_line_; |
base::mac::ScopedNSAutoreleasePool* pool = parameters.autorelease_pool_; |
@@ -231,12 +231,12 @@ |
if (run_loop) { |
if (pool) |
pool->Recycle(); |
- TRACE_EVENT_BEGIN_ETW("RendererMain.START_MSG_LOOP", 0, 0); |
+ TRACE_EVENT_BEGIN("RendererMain.START_MSG_LOOP", 0, 0); |
MessageLoop::current()->Run(); |
- TRACE_EVENT_END_ETW("RendererMain.START_MSG_LOOP", 0, 0); |
+ TRACE_EVENT_END("RendererMain.START_MSG_LOOP", 0, 0); |
} |
} |
platform.PlatformUninitialize(); |
- TRACE_EVENT_END_ETW("RendererMain", 0, ""); |
+ TRACE_EVENT_END("RendererMain", 0, ""); |
return 0; |
} |