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

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

Issue 819133004: Make callers of CommandLine use it via the base:: namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 6 years 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.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.
« no previous file with comments | « chrome/browser/devtools/devtools_ui_bindings.cc ('k') | chrome/browser/diagnostics/diagnostics_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698