| Index: chrome/browser/diagnostics/diagnostics_controller.cc
|
| diff --git a/chrome/browser/diagnostics/diagnostics_controller.cc b/chrome/browser/diagnostics/diagnostics_controller.cc
|
| index 4095535a2b880df61e38d4216e7883ea743c0e4c..c4c8c0dd5588b484144605e7ef43d78cc1aa3cfc 100644
|
| --- a/chrome/browser/diagnostics/diagnostics_controller.cc
|
| +++ b/chrome/browser/diagnostics/diagnostics_controller.cc
|
| @@ -58,7 +58,7 @@ void DiagnosticsController::RecordRegularStartup() {
|
|
|
| // This entry point is called from early in startup when very few things have
|
| // been initialized, so be careful what you use.
|
| -int DiagnosticsController::Run(const CommandLine& command_line,
|
| +int DiagnosticsController::Run(const base::CommandLine& command_line,
|
| DiagnosticsWriter* writer) {
|
| writer_ = writer;
|
|
|
| @@ -70,7 +70,7 @@ int DiagnosticsController::Run(const CommandLine& command_line,
|
|
|
| // This entry point is called from early in startup when very few things have
|
| // been initialized, so be careful what you use.
|
| -int DiagnosticsController::RunRecovery(const CommandLine& command_line,
|
| +int DiagnosticsController::RunRecovery(const base::CommandLine& command_line,
|
| DiagnosticsWriter* writer) {
|
| // Separate out recoveries that we execute automatically as a result of a
|
| // crash from user-run recoveries.
|
|
|