| Index: content/browser/browser_main_loop.cc
|
| diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc
|
| index 64e3446bcce54b75ed116e3820d246929c916dcc..7ae752cbf2113b6c847eba701f9b368dbfb55550 100644
|
| --- a/content/browser/browser_main_loop.cc
|
| +++ b/content/browser/browser_main_loop.cc
|
| @@ -1232,6 +1232,10 @@ void BrowserMainLoop::InitStartupTracing(
|
| delay_secs = 5;
|
| }
|
|
|
| +#if defined(OS_ANDROID)
|
| + TracingControllerAndroid::SetupEarlyJavaTracing();
|
| +#endif
|
| +
|
| startup_trace_timer_.Start(FROM_HERE,
|
| base::TimeDelta::FromSeconds(delay_secs),
|
| this,
|
| @@ -1240,6 +1244,7 @@ void BrowserMainLoop::InitStartupTracing(
|
|
|
| void BrowserMainLoop::EndStartupTracing() {
|
| is_tracing_startup_ = false;
|
| +
|
| TracingController::GetInstance()->DisableRecording(
|
| TracingController::CreateFileSink(
|
| startup_trace_file_,
|
|
|