diff options
Diffstat (limited to 'chrome/browser/chromeos/policy/browser_policy_connector_chromeos.cc')
-rw-r--r-- | chrome/browser/chromeos/policy/browser_policy_connector_chromeos.cc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/chrome/browser/chromeos/policy/browser_policy_connector_chromeos.cc b/chrome/browser/chromeos/policy/browser_policy_connector_chromeos.cc index a3d2d3a..a329ba0 100644 --- a/chrome/browser/chromeos/policy/browser_policy_connector_chromeos.cc +++ b/chrome/browser/chromeos/policy/browser_policy_connector_chromeos.cc @@ -74,7 +74,8 @@ scoped_refptr<base::SequencedTaskRunner> GetBackgroundTaskRunner() { } std::string GetDeviceManagementServerUrlForConsumer() { - const CommandLine* command_line = CommandLine::ForCurrentProcess(); + const base::CommandLine* command_line = + base::CommandLine::ForCurrentProcess(); if (command_line->HasSwitch( chromeos::switches::kConsumerDeviceManagementUrl)) { return command_line->GetSwitchValueASCII( @@ -115,7 +116,8 @@ BrowserPolicyConnectorChromeOS::BrowserPolicyConnectorChromeOS() &install_attrs_file)); install_attributes_->ReadCacheFile(install_attrs_file); - const CommandLine* command_line = CommandLine::ForCurrentProcess(); + const base::CommandLine* command_line = + base::CommandLine::ForCurrentProcess(); if (command_line->HasSwitch( chromeos::switches::kEnableConsumerManagement)) { consumer_management_service_.reset( @@ -149,7 +151,8 @@ void BrowserPolicyConnectorChromeOS::Init( scoped_refptr<net::URLRequestContextGetter> request_context) { ChromeBrowserPolicyConnector::Init(local_state, request_context); - const CommandLine* command_line = CommandLine::ForCurrentProcess(); + const base::CommandLine* command_line = + base::CommandLine::ForCurrentProcess(); if (command_line->HasSwitch(chromeos::switches::kEnableConsumerManagement)) { scoped_ptr<DeviceManagementService::Configuration> configuration( new DeviceManagementServiceConfiguration( |