Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6217)

Unified Diff: chrome/browser/policy/browser_policy_connector.h

Issue 12556004: Created AttestationPolicyObserver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698