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

Unified Diff: components/policy/core/common/policy_service.h

Issue 1749053002: Move //remoting/remoting_host_win.gypi:* to GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update for component build of Windows Created 4 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: components/policy/core/common/policy_service.h
diff --git a/components/policy/core/common/policy_service.h b/components/policy/core/common/policy_service.h
index b9897e18a297e974d5469580e699f57e6768c80a..f9df5f845e7caf6ee3e01612024e284f45ed8ea7 100644
--- a/components/policy/core/common/policy_service.h
+++ b/components/policy/core/common/policy_service.h
@@ -39,13 +39,17 @@ class POLICY_EXPORT PolicyService {
// ready. If IsInitializationComplete() is false, then this will be invoked
// once all the policy providers have finished loading their policies for
// |domain|.
- virtual void OnPolicyServiceInitialized(PolicyDomain domain) {}
+ virtual void OnPolicyServiceInitialized(PolicyDomain domain);
+
+#if defined(WIN32) && defined(COMPONENT_BUILD)
+ Observer();
+#endif
protected:
- virtual ~Observer() {}
+ virtual ~Observer();
};
- virtual ~PolicyService() {}
+ virtual ~PolicyService();
// Observes changes to all components of the given |domain|.
virtual void AddObserver(PolicyDomain domain, Observer* observer) = 0;

Powered by Google App Engine
This is Rietveld 408576698