| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef CHROME_BROWSER_CHROMEOS_POLICY_BROWSER_POLICY_CONNECTOR_CHROMEOS_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_POLICY_BROWSER_POLICY_CONNECTOR_CHROMEOS_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_POLICY_BROWSER_POLICY_CONNECTOR_CHROMEOS_H_ | 6 #define CHROME_BROWSER_CHROMEOS_POLICY_BROWSER_POLICY_CONNECTOR_CHROMEOS_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 namespace policy { | 36 namespace policy { |
| 37 | 37 |
| 38 class AffiliatedCloudPolicyInvalidator; | 38 class AffiliatedCloudPolicyInvalidator; |
| 39 class AffiliatedInvalidationServiceProvider; | 39 class AffiliatedInvalidationServiceProvider; |
| 40 class AffiliatedRemoteCommandsInvalidator; | 40 class AffiliatedRemoteCommandsInvalidator; |
| 41 class BluetoothPolicyHandler; | 41 class BluetoothPolicyHandler; |
| 42 class DeviceActiveDirectoryPolicyManager; | 42 class DeviceActiveDirectoryPolicyManager; |
| 43 class DeviceCloudPolicyInitializer; | 43 class DeviceCloudPolicyInitializer; |
| 44 class DeviceLocalAccountPolicyService; | 44 class DeviceLocalAccountPolicyService; |
| 45 class DeviceManagementService; | |
| 46 struct EnrollmentConfig; | 45 struct EnrollmentConfig; |
| 47 class NetworkConfigurationUpdater; | 46 class NetworkConfigurationUpdater; |
| 48 class ProxyPolicyProvider; | 47 class ProxyPolicyProvider; |
| 49 class ServerBackedStateKeysBroker; | 48 class ServerBackedStateKeysBroker; |
| 50 | 49 |
| 51 // Extends ChromeBrowserPolicyConnector with the setup specific to Chrome OS. | 50 // Extends ChromeBrowserPolicyConnector with the setup specific to Chrome OS. |
| 52 class BrowserPolicyConnectorChromeOS | 51 class BrowserPolicyConnectorChromeOS |
| 53 : public ChromeBrowserPolicyConnector, | 52 : public ChromeBrowserPolicyConnector, |
| 54 public DeviceCloudPolicyManagerChromeOS::Observer { | 53 public DeviceCloudPolicyManagerChromeOS::Observer { |
| 55 public: | 54 public: |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 std::unique_ptr<NetworkConfigurationUpdater> network_configuration_updater_; | 206 std::unique_ptr<NetworkConfigurationUpdater> network_configuration_updater_; |
| 208 | 207 |
| 209 base::WeakPtrFactory<BrowserPolicyConnectorChromeOS> weak_ptr_factory_; | 208 base::WeakPtrFactory<BrowserPolicyConnectorChromeOS> weak_ptr_factory_; |
| 210 | 209 |
| 211 DISALLOW_COPY_AND_ASSIGN(BrowserPolicyConnectorChromeOS); | 210 DISALLOW_COPY_AND_ASSIGN(BrowserPolicyConnectorChromeOS); |
| 212 }; | 211 }; |
| 213 | 212 |
| 214 } // namespace policy | 213 } // namespace policy |
| 215 | 214 |
| 216 #endif // CHROME_BROWSER_CHROMEOS_POLICY_BROWSER_POLICY_CONNECTOR_CHROMEOS_H_ | 215 #endif // CHROME_BROWSER_CHROMEOS_POLICY_BROWSER_POLICY_CONNECTOR_CHROMEOS_H_ |
| OLD | NEW |