OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/chromeos/policy/device_network_configuration_updater.h" | 5 #include "chrome/browser/chromeos/policy/device_network_configuration_updater.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "chrome/browser/browser_process.h" | 10 #include "chrome/browser/browser_process.h" |
11 #include "chrome/browser/chromeos/policy/browser_policy_connector_chromeos.h" | 11 #include "chrome/browser/chromeos/policy/browser_policy_connector_chromeos.h" |
12 #include "chrome/browser/chromeos/settings/cros_settings.h" | 12 #include "chrome/browser/chromeos/settings/cros_settings.h" |
13 #include "chromeos/chromeos_switches.h" | 13 #include "chromeos/chromeos_switches.h" |
14 #include "chromeos/network/managed_network_configuration_handler.h" | 14 #include "chromeos/network/managed_network_configuration_handler.h" |
15 #include "chromeos/network/network_device_handler.h" | 15 #include "chromeos/network/network_device_handler.h" |
16 #include "chromeos/settings/cros_settings_names.h" | 16 #include "chromeos/settings/cros_settings_names.h" |
17 #include "chromeos/settings/cros_settings_provider.h" | 17 #include "chromeos/settings/cros_settings_provider.h" |
18 #include "policy/policy_constants.h" | 18 #include "components/policy/policy_constants.h" |
19 | 19 |
20 namespace policy { | 20 namespace policy { |
21 | 21 |
22 DeviceNetworkConfigurationUpdater::~DeviceNetworkConfigurationUpdater() {} | 22 DeviceNetworkConfigurationUpdater::~DeviceNetworkConfigurationUpdater() {} |
23 | 23 |
24 // static | 24 // static |
25 std::unique_ptr<DeviceNetworkConfigurationUpdater> | 25 std::unique_ptr<DeviceNetworkConfigurationUpdater> |
26 DeviceNetworkConfigurationUpdater::CreateForDevicePolicy( | 26 DeviceNetworkConfigurationUpdater::CreateForDevicePolicy( |
27 PolicyService* policy_service, | 27 PolicyService* policy_service, |
28 chromeos::ManagedNetworkConfigurationHandler* network_config_handler, | 28 chromeos::ManagedNetworkConfigurationHandler* network_config_handler, |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 } else { | 117 } else { |
118 DCHECK_EQ(trusted_status, | 118 DCHECK_EQ(trusted_status, |
119 chromeos::CrosSettingsProvider::PERMANENTLY_UNTRUSTED); | 119 chromeos::CrosSettingsProvider::PERMANENTLY_UNTRUSTED); |
120 // Roaming is disabled as we can't determine the correct setting. | 120 // Roaming is disabled as we can't determine the correct setting. |
121 } | 121 } |
122 | 122 |
123 network_device_handler_->SetCellularAllowRoaming(data_roaming_setting); | 123 network_device_handler_->SetCellularAllowRoaming(data_roaming_setting); |
124 } | 124 } |
125 | 125 |
126 } // namespace policy | 126 } // namespace policy |
OLD | NEW |