Index: chrome/browser/diagnostics/diagnostics_controller.h |
diff --git a/chrome/browser/diagnostics/diagnostics_controller.h b/chrome/browser/diagnostics/diagnostics_controller.h |
index f5d3d2292ff1918e60a937e92f4696d9c8a470d5..7e7ee17b4d5c35f46c84b316ff9ee5609f53721d 100644 |
--- a/chrome/browser/diagnostics/diagnostics_controller.h |
+++ b/chrome/browser/diagnostics/diagnostics_controller.h |
@@ -8,7 +8,9 @@ |
#include "base/memory/scoped_ptr.h" |
#include "base/memory/singleton.h" |
+namespace base { |
class CommandLine; |
+} |
namespace diagnostics { |
@@ -21,11 +23,12 @@ class DiagnosticsController { |
// Entry point for the diagnostics mode. Returns zero if able to run |
// diagnostics successfully, regardless of the results of the diagnostics. |
- int Run(const CommandLine& command_line, DiagnosticsWriter* writer); |
+ int Run(const base::CommandLine& command_line, DiagnosticsWriter* writer); |
// Entry point for running recovery based on diagnostics that have already |
// been run. In order for this to do anything, Run() must be executed first. |
- int RunRecovery(const CommandLine& command_line, DiagnosticsWriter* writer); |
+ int RunRecovery(const base::CommandLine& command_line, |
+ DiagnosticsWriter* writer); |
// Returns a model with the results that have accumulated. They can then be |
// queried for their attributes for human consumption later. |