summaryrefslogtreecommitdiffstats
path: root/chrome/browser/diagnostics/diagnostics_controller.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/diagnostics/diagnostics_controller.h')
-rw-r--r--chrome/browser/diagnostics/diagnostics_controller.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/chrome/browser/diagnostics/diagnostics_controller.h b/chrome/browser/diagnostics/diagnostics_controller.h
index f5d3d22..7e7ee17 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.