| Index: chrome/browser/lifetime/application_lifetime.cc
|
| diff --git a/chrome/browser/lifetime/application_lifetime.cc b/chrome/browser/lifetime/application_lifetime.cc
|
| index 16092c6ccedf7190a3773ae8905043f63ab67db6..7cc9c19bf337cf7c9dc9dc41c7a2b664ca4ee75f 100644
|
| --- a/chrome/browser/lifetime/application_lifetime.cc
|
| +++ b/chrome/browser/lifetime/application_lifetime.cc
|
| @@ -181,12 +181,12 @@ void StartShutdownTracing() {
|
| const base::CommandLine& command_line =
|
| *base::CommandLine::ForCurrentProcess();
|
| if (command_line.HasSwitch(switches::kTraceShutdown)) {
|
| - base::debug::CategoryFilter category_filter(
|
| + base::trace_event::CategoryFilter category_filter(
|
| command_line.GetSwitchValueASCII(switches::kTraceShutdown));
|
| - base::debug::TraceLog::GetInstance()->SetEnabled(
|
| + base::trace_event::TraceLog::GetInstance()->SetEnabled(
|
| category_filter,
|
| - base::debug::TraceLog::RECORDING_MODE,
|
| - base::debug::TraceOptions());
|
| + base::trace_event::TraceLog::RECORDING_MODE,
|
| + base::trace_event::TraceOptions());
|
| }
|
| TRACE_EVENT0("shutdown", "StartShutdownTracing");
|
| }
|
|
|