| Index: chrome/browser/lifetime/application_lifetime.cc
|
| diff --git a/chrome/browser/lifetime/application_lifetime.cc b/chrome/browser/lifetime/application_lifetime.cc
|
| index 261e00e07118a840f9f08cdf066e8a69e4df7055..0fcddbcaa5cc9e09f9cd34452e1709a94401da04 100644
|
| --- a/chrome/browser/lifetime/application_lifetime.cc
|
| +++ b/chrome/browser/lifetime/application_lifetime.cc
|
| @@ -184,12 +184,11 @@ void StartShutdownTracing() {
|
| const base::CommandLine& command_line =
|
| *base::CommandLine::ForCurrentProcess();
|
| if (command_line.HasSwitch(switches::kTraceShutdown)) {
|
| - base::trace_event::CategoryFilter category_filter(
|
| - command_line.GetSwitchValueASCII(switches::kTraceShutdown));
|
| + base::trace_event::TraceConfig trace_config(
|
| + command_line.GetSwitchValueASCII(switches::kTraceShutdown), "");
|
| base::trace_event::TraceLog::GetInstance()->SetEnabled(
|
| - category_filter,
|
| - base::trace_event::TraceLog::RECORDING_MODE,
|
| - base::trace_event::TraceOptions());
|
| + trace_config,
|
| + base::trace_event::TraceLog::RECORDING_MODE);
|
| }
|
| TRACE_EVENT0("shutdown", "StartShutdownTracing");
|
| }
|
|
|