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

Unified Diff: chrome/browser/policy/chrome_browser_policy_connector.cc

Issue 816403003: 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/policy/chrome_browser_policy_connector.cc
diff --git a/chrome/browser/policy/chrome_browser_policy_connector.cc b/chrome/browser/policy/chrome_browser_policy_connector.cc
index ff06118802f95d223b5021f4437f06e29d45c149..c010dfff450b90fe63dc952d64e8afe0f3e12b5f 100644
--- a/chrome/browser/policy/chrome_browser_policy_connector.cc
+++ b/chrome/browser/policy/chrome_browser_policy_connector.cc
@@ -139,7 +139,7 @@ void ChromeBrowserPolicyConnector::AppendExtraFlagPerPolicy() {
const base::Value* policy_value =
chrome_policy.GetValue(key::kEnableWebBasedSignin);
bool enabled = false;
- CommandLine* command_line = CommandLine::ForCurrentProcess();
+ base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
if (policy_value && policy_value->GetAsBoolean(&enabled) && enabled &&
!command_line->HasSwitch(switches::kEnableWebBasedSignin)) {
command_line->AppendSwitch(switches::kEnableWebBasedSignin);
« no previous file with comments | « chrome/browser/plugins/plugins_resource_service.cc ('k') | chrome/browser/policy/cloud/cloud_policy_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698