| Index: chrome/browser/policy/policy_service.h
|
| diff --git a/chrome/browser/policy/policy_service.h b/chrome/browser/policy/policy_service.h
|
| index 93c7f9110421180af0c25d2176bfdebcd326cf27..67e515f2fba9527bf0cfd7dcc9da055ea2dfe5a9 100644
|
| --- a/chrome/browser/policy/policy_service.h
|
| +++ b/chrome/browser/policy/policy_service.h
|
| @@ -38,8 +38,6 @@ class PolicyService {
|
| public:
|
| class Observer {
|
| public:
|
| - virtual ~Observer() {}
|
| -
|
| // Invoked whenever policies for the |domain|, |component_id| namespace are
|
| // modified. This is only invoked for changes that happen after AddObserver
|
| // is called. |previous| contains the values of the policies before the
|
| @@ -53,6 +51,9 @@ class PolicyService {
|
| // IsInitializationComplete() is false, then this will be invoked once all
|
| // the policy providers are ready.
|
| virtual void OnPolicyServiceInitialized() {}
|
| +
|
| + protected:
|
| + virtual ~Observer() {}
|
| };
|
|
|
| virtual ~PolicyService() {}
|
|
|