Index: content/browser/browser_main_runner.cc |
=================================================================== |
--- content/browser/browser_main_runner.cc (revision 124300) |
+++ content/browser/browser_main_runner.cc (working copy) |
@@ -41,6 +41,8 @@ |
OVERRIDE { |
is_initialized_ = true; |
+ statistics_.reset(new base::StatisticsRecorder); |
Marshall
2012/03/02 02:14:06
This should probably come after the WaitForDebugge
kaiwang
2012/03/02 04:26:56
Done.
|
+ |
// ChildProcess:: is a misnomer unless you consider context. Use |
// of --wait-for-debugger only makes sense when Chrome itself is a |
// child process (e.g. when launched by PyAuto). |
@@ -76,8 +78,6 @@ |
com_initializer_.reset(new base::win::ScopedCOMInitializer); |
#endif // OS_WIN |
- statistics_.reset(new base::StatisticsRecorder); |
- |
main_loop_->CreateThreads(); |
int result_code = main_loop_->GetResultCode(); |
if (result_code > 0) |