OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_POLICY_BROWSER_POLICY_CONNECTOR_H_ | 5 #ifndef CHROME_BROWSER_POLICY_BROWSER_POLICY_CONNECTOR_H_ |
6 #define CHROME_BROWSER_POLICY_BROWSER_POLICY_CONNECTOR_H_ | 6 #define CHROME_BROWSER_POLICY_BROWSER_POLICY_CONNECTOR_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
13 #include "chrome/browser/policy/cloud_policy_constants.h" | 13 #include "chrome/browser/chromeos/policy/proxy_policy_provider.h" |
Joao da Silva
2013/02/06 09:43:13
#ifdef CHROMEOS
Mattias Nissler (ping if slow)
2013/02/06 13:51:53
Done.
| |
14 #include "chrome/browser/policy/cloud/cloud_policy_constants.h" | |
14 #include "chrome/browser/policy/configuration_policy_handler_list.h" | 15 #include "chrome/browser/policy/configuration_policy_handler_list.h" |
15 #include "chrome/browser/policy/proxy_policy_provider.h" | |
16 | 16 |
17 class PrefServiceSimple; | 17 class PrefServiceSimple; |
18 class Profile; | 18 class Profile; |
19 | 19 |
20 namespace policy { | 20 namespace policy { |
21 | 21 |
22 class ConfigurationPolicyProvider; | 22 class ConfigurationPolicyProvider; |
23 class DeviceManagementService; | 23 class DeviceManagementService; |
24 class PolicyService; | 24 class PolicyService; |
25 class PolicyStatisticsCollector; | 25 class PolicyStatisticsCollector; |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
212 scoped_ptr<AppPackUpdater> app_pack_updater_; | 212 scoped_ptr<AppPackUpdater> app_pack_updater_; |
213 scoped_ptr<NetworkConfigurationUpdater> network_configuration_updater_; | 213 scoped_ptr<NetworkConfigurationUpdater> network_configuration_updater_; |
214 #endif | 214 #endif |
215 | 215 |
216 DISALLOW_COPY_AND_ASSIGN(BrowserPolicyConnector); | 216 DISALLOW_COPY_AND_ASSIGN(BrowserPolicyConnector); |
217 }; | 217 }; |
218 | 218 |
219 } // namespace policy | 219 } // namespace policy |
220 | 220 |
221 #endif // CHROME_BROWSER_POLICY_BROWSER_POLICY_CONNECTOR_H_ | 221 #endif // CHROME_BROWSER_POLICY_BROWSER_POLICY_CONNECTOR_H_ |
OLD | NEW |