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

Unified Diff: chrome/browser/extensions/api/command_line_private/command_line_private_api.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/extensions/api/command_line_private/command_line_private_api.cc
diff --git a/chrome/browser/extensions/api/command_line_private/command_line_private_api.cc b/chrome/browser/extensions/api/command_line_private/command_line_private_api.cc
index 52586c5de53a405127160f0b256a00e30da97075..37bef4ef3a4a2f77526128c642b0f9dfe0c5484d 100644
--- a/chrome/browser/extensions/api/command_line_private/command_line_private_api.cc
+++ b/chrome/browser/extensions/api/command_line_private/command_line_private_api.cc
@@ -32,7 +32,7 @@ bool CommandLinePrivateHasSwitchFunction::RunSync() {
}
results_ = command_line_private::HasSwitch::Results::Create(
- CommandLine::ForCurrentProcess()->HasSwitch(params->name));
+ base::CommandLine::ForCurrentProcess()->HasSwitch(params->name));
return true;
}

Powered by Google App Engine
This is Rietveld 408576698