Chromium Code Reviews| Index: content/app/content_main_runner.cc |
| diff --git a/content/app/content_main_runner.cc b/content/app/content_main_runner.cc |
| index 1a5e95048da9d1e392754495be37c32887e0f637..f35ed299817fee22c9f6feb56c313f1a7da49ab2 100644 |
| --- a/content/app/content_main_runner.cc |
| +++ b/content/app/content_main_runner.cc |
| @@ -28,7 +28,7 @@ |
| #include "base/strings/string_util.h" |
| #include "base/strings/stringprintf.h" |
| #include "base/trace_event/trace_event.h" |
| -#include "components/tracing/startup_tracing.h" |
| +#include "components/tracing/trace_config_file.h" |
| #include "components/tracing/tracing_switches.h" |
| #include "content/browser/browser_main.h" |
| #include "content/common/set_process_title.h" |
| @@ -629,9 +629,11 @@ class ContentMainRunnerImpl : public ContentMainRunner { |
| base::trace_event::TraceLog::RECORDING_MODE); |
| } else if (process_type != switches::kZygoteProcess && |
| process_type != switches::kRendererProcess) { |
| - // There is no need to schedule stopping tracing in this case. Telemetry |
| - // will stop tracing on demand later. |
| - tracing::EnableStartupTracingIfConfigFileExists(); |
| + if (tracing::TraceConfigFile::GetInstance()->IsEnabled()) { |
| + base::trace_event::TraceLog::GetInstance()->SetEnabled( |
| + tracing::TraceConfigFile::GetInstance()->GetTraceConfig(), |
| + base::trace_event::TraceLog::RECORDING_MODE); |
|
no sievers
2015/08/24 22:50:16
You're not really changing it, but do you know why
Zhen Wang
2015/08/25 17:38:14
I thought this is only executed for desktop Chrome
|
| + } |
| } |
| #if defined(OS_WIN) |