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

Unified Diff: components/password_manager/core/common/experiments.cc

Issue 818103002: Make callers of CommandLine use it via the base:: namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: components/password_manager/core/common/experiments.cc
diff --git a/components/password_manager/core/common/experiments.cc b/components/password_manager/core/common/experiments.cc
index 8a49e368fef1de7ee7b2e585b0e659f28f3f8b9e..94fd32ff75941ddb78fa76efecad2a85fe7698fd 100644
--- a/components/password_manager/core/common/experiments.cc
+++ b/components/password_manager/core/common/experiments.cc
@@ -14,7 +14,7 @@ bool ManageAccountLinkExperimentEnabled() {
std::string group_name =
base::FieldTrialList::FindFullName("PasswordLinkInSettings");
- CommandLine* command_line = CommandLine::ForCurrentProcess();
+ base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
if (command_line->HasSwitch(switches::kDisablePasswordLink))
return false;

Powered by Google App Engine
This is Rietveld 408576698