| Index: chrome/renderer/renderer_main.cc
|
| diff --git a/chrome/renderer/renderer_main.cc b/chrome/renderer/renderer_main.cc
|
| index 8d4e51c6a1aa009f581e2bbd4caa8504981daf01..7153720c3ccd9716926bdcc8dbd5300fe1dda978 100644
|
| --- a/chrome/renderer/renderer_main.cc
|
| +++ b/chrome/renderer/renderer_main.cc
|
| @@ -235,7 +235,7 @@ class RendererMessageLoopObserver : public MessageLoop::TaskObserver {
|
|
|
| // mainline routine for running as the Renderer process
|
| int RendererMain(const MainFunctionParams& parameters) {
|
| - TRACE_EVENT_BEGIN("RendererMain", 0, "");
|
| + TRACE_EVENT_BEGIN_ETW("RendererMain", 0, "");
|
|
|
| const CommandLine& parsed_command_line = parameters.command_line_;
|
| base::mac::ScopedNSAutoreleasePool* pool = parameters.autorelease_pool_;
|
| @@ -361,12 +361,12 @@ int RendererMain(const MainFunctionParams& parameters) {
|
| if (run_loop) {
|
| if (pool)
|
| pool->Recycle();
|
| - TRACE_EVENT_BEGIN("RendererMain.START_MSG_LOOP", 0, 0);
|
| + TRACE_EVENT_BEGIN_ETW("RendererMain.START_MSG_LOOP", 0, 0);
|
| MessageLoop::current()->Run();
|
| - TRACE_EVENT_END("RendererMain.START_MSG_LOOP", 0, 0);
|
| + TRACE_EVENT_END_ETW("RendererMain.START_MSG_LOOP", 0, 0);
|
| }
|
| }
|
| platform.PlatformUninitialize();
|
| - TRACE_EVENT_END("RendererMain", 0, "");
|
| + TRACE_EVENT_END_ETW("RendererMain", 0, "");
|
| return 0;
|
| }
|
|
|