Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(232)

Side by Side Diff: content/renderer/renderer_main.cc

Issue 17451017: Process names, and predictable thread and process ordering in about:tracing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix trybots i think Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/base_switches.h" 5 #include "base/base_switches.h"
6 #include "base/command_line.h" 6 #include "base/command_line.h"
7 #include "base/debug/debugger.h" 7 #include "base/debug/debugger.h"
8 #include "base/debug/stack_trace.h" 8 #include "base/debug/stack_trace.h"
9 #include "base/debug/trace_event.h" 9 #include "base/debug/trace_event.h"
10 #include "base/i18n/rtl.h" 10 #include "base/i18n/rtl.h"
11 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
12 #include "base/message_loop.h" 12 #include "base/message_loop.h"
13 #include "base/metrics/field_trial.h" 13 #include "base/metrics/field_trial.h"
14 #include "base/metrics/histogram.h" 14 #include "base/metrics/histogram.h"
15 #include "base/metrics/statistics_recorder.h" 15 #include "base/metrics/statistics_recorder.h"
16 #include "base/metrics/stats_counters.h" 16 #include "base/metrics/stats_counters.h"
17 #include "base/path_service.h" 17 #include "base/path_service.h"
18 #include "base/pending_task.h" 18 #include "base/pending_task.h"
19 #include "base/power_monitor/power_monitor.h" 19 #include "base/power_monitor/power_monitor.h"
20 #include "base/process_util.h" 20 #include "base/process_util.h"
21 #include "base/strings/string_util.h" 21 #include "base/strings/string_util.h"
22 #include "base/threading/platform_thread.h" 22 #include "base/threading/platform_thread.h"
23 #include "base/time/time.h" 23 #include "base/time/time.h"
24 #include "base/timer/hi_res_timer_manager.h" 24 #include "base/timer/hi_res_timer_manager.h"
25 #include "content/child/child_process.h" 25 #include "content/child/child_process.h"
26 #include "content/common/content_constants_internal.h"
26 #include "content/common/pepper_plugin_registry.h" 27 #include "content/common/pepper_plugin_registry.h"
27 #include "content/public/common/content_switches.h" 28 #include "content/public/common/content_switches.h"
28 #include "content/public/common/main_function_params.h" 29 #include "content/public/common/main_function_params.h"
29 #include "content/public/renderer/content_renderer_client.h" 30 #include "content/public/renderer/content_renderer_client.h"
30 #include "content/renderer/browser_plugin/browser_plugin_manager_impl.h" 31 #include "content/renderer/browser_plugin/browser_plugin_manager_impl.h"
31 #include "content/renderer/render_process_impl.h" 32 #include "content/renderer/render_process_impl.h"
32 #include "content/renderer/render_thread_impl.h" 33 #include "content/renderer/render_thread_impl.h"
33 #include "content/renderer/renderer_main_platform_delegate.h" 34 #include "content/renderer/renderer_main_platform_delegate.h"
34 #include "ui/base/ui_base_switches.h" 35 #include "ui/base/ui_base_switches.h"
35 #include "webkit/glue/webkit_glue.h" 36 #include "webkit/glue/webkit_glue.h"
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 virtual void DidProcessTask(const base::PendingTask& pending_task) OVERRIDE { 104 virtual void DidProcessTask(const base::PendingTask& pending_task) OVERRIDE {
104 HISTOGRAM_MEMORY_KB("Memory.RendererUsed", webkit_glue::MemoryUsageKB()); 105 HISTOGRAM_MEMORY_KB("Memory.RendererUsed", webkit_glue::MemoryUsageKB());
105 } 106 }
106 private: 107 private:
107 DISALLOW_COPY_AND_ASSIGN(MemoryObserver); 108 DISALLOW_COPY_AND_ASSIGN(MemoryObserver);
108 }; 109 };
109 110
110 // mainline routine for running as the Renderer process 111 // mainline routine for running as the Renderer process
111 int RendererMain(const MainFunctionParams& parameters) { 112 int RendererMain(const MainFunctionParams& parameters) {
112 TRACE_EVENT_BEGIN_ETW("RendererMain", 0, ""); 113 TRACE_EVENT_BEGIN_ETW("RendererMain", 0, "");
114 base::debug::TraceLog::GetInstance()->SetProcessName("Renderer");
115 base::debug::TraceLog::GetInstance()->SetProcessSortIndex(
116 kTraceEventRendererProcessSortIndex);
113 117
114 const CommandLine& parsed_command_line = parameters.command_line; 118 const CommandLine& parsed_command_line = parameters.command_line;
115 119
116 #if defined(OS_MACOSX) 120 #if defined(OS_MACOSX)
117 base::mac::ScopedNSAutoreleasePool* pool = parameters.autorelease_pool; 121 base::mac::ScopedNSAutoreleasePool* pool = parameters.autorelease_pool;
118 #endif // OS_MACOSX 122 #endif // OS_MACOSX
119 123
120 #if defined(OS_CHROMEOS) 124 #if defined(OS_CHROMEOS)
121 // As Zygote process starts up earlier than browser process gets its own 125 // As Zygote process starts up earlier than browser process gets its own
122 // locale (at login time for Chrome OS), we have to set the ICU default 126 // locale (at login time for Chrome OS), we have to set the ICU default
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 base::MessageLoop::current()->Run(); 247 base::MessageLoop::current()->Run();
244 TRACE_EVENT_END_ETW("RendererMain.START_MSG_LOOP", 0, 0); 248 TRACE_EVENT_END_ETW("RendererMain.START_MSG_LOOP", 0, 0);
245 } 249 }
246 } 250 }
247 platform.PlatformUninitialize(); 251 platform.PlatformUninitialize();
248 TRACE_EVENT_END_ETW("RendererMain", 0, ""); 252 TRACE_EVENT_END_ETW("RendererMain", 0, "");
249 return 0; 253 return 0;
250 } 254 }
251 255
252 } // namespace content 256 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698