Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(225)

Unified Diff: chrome/browser/diagnostics/diagnostics_controller.h

Issue 196413016: Move CommandLine to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.
« no previous file with comments | « chrome/browser/component_updater/pnacl/pnacl_component_installer.h ('k') | chrome/browser/diagnostics/diagnostics_model.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698