Index: chrome/browser/policy/browser_policy_connector.h |
diff --git a/chrome/browser/policy/browser_policy_connector.h b/chrome/browser/policy/browser_policy_connector.h |
index 3774422070b650bda0f98c99f2e8629db0d1fc47..7cae4c5feb958b65f470a8c7a97828ec445acdeb 100644 |
--- a/chrome/browser/policy/browser_policy_connector.h |
+++ b/chrome/browser/policy/browser_policy_connector.h |
@@ -18,6 +18,13 @@ |
#include "chrome/browser/chromeos/policy/proxy_policy_provider.h" |
#endif |
+#if defined(OS_CHROMEOS) |
+namespace chromeos { |
+namespace attestation { |
+class AttestationPolicyObserver; |
+}} |
Mattias Nissler (ping if slow)
2013/03/27 14:16:34
braces on separate lines.
dkrahn
2013/03/27 21:20:44
Done.
|
+#endif |
+ |
class PrefRegistrySimple; |
class PrefService; |
class Profile; |
@@ -219,6 +226,8 @@ class BrowserPolicyConnector { |
#if defined(OS_CHROMEOS) |
scoped_ptr<AppPackUpdater> app_pack_updater_; |
scoped_ptr<NetworkConfigurationUpdater> network_configuration_updater_; |
+ scoped_ptr<chromeos::attestation::AttestationPolicyObserver> |
+ attestation_policy_observer_; |
Mattias Nissler (ping if slow)
2013/03/27 14:16:34
Not sure this really belongs here. While this devi
dkrahn
2013/03/27 21:20:44
This is only for enterprise managed devices. I wa
Mattias Nissler (ping if slow)
2013/04/02 12:49:39
The rule is basically that we put the observers wh
dkrahn
2013/04/04 21:27:26
Understood, I think it does fit well with DeviceCl
|
#endif |
DISALLOW_COPY_AND_ASSIGN(BrowserPolicyConnector); |