OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 COMPONENTS_INVALIDATION_IMPL_PROFILE_INVALIDATION_PROVIDER_H_ | 5 #ifndef COMPONENTS_INVALIDATION_IMPL_PROFILE_INVALIDATION_PROVIDER_H_ |
6 #define COMPONENTS_INVALIDATION_IMPL_PROFILE_INVALIDATION_PROVIDER_H_ | 6 #define COMPONENTS_INVALIDATION_IMPL_PROFILE_INVALIDATION_PROVIDER_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/macros.h" | 9 #include "base/macros.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "components/keyed_service/core/keyed_service.h" | 11 #include "components/keyed_service/core/keyed_service.h" |
12 | 12 |
| 13 namespace user_prefs { |
| 14 class PrefRegistrySyncable; |
| 15 } |
| 16 |
13 namespace invalidation { | 17 namespace invalidation { |
14 | 18 |
15 class InvalidationService; | 19 class InvalidationService; |
16 | 20 |
17 // A KeyedService that owns an InvalidationService. | 21 // A KeyedService that owns an InvalidationService. |
18 class ProfileInvalidationProvider : public KeyedService { | 22 class ProfileInvalidationProvider : public KeyedService { |
19 public: | 23 public: |
20 explicit ProfileInvalidationProvider( | 24 explicit ProfileInvalidationProvider( |
21 scoped_ptr<InvalidationService> invalidation_service); | 25 scoped_ptr<InvalidationService> invalidation_service); |
22 ~ProfileInvalidationProvider() override; | 26 ~ProfileInvalidationProvider() override; |
23 | 27 |
24 InvalidationService* GetInvalidationService(); | 28 InvalidationService* GetInvalidationService(); |
25 | 29 |
26 // KeyedService: | 30 // KeyedService: |
27 void Shutdown() override; | 31 void Shutdown() override; |
28 | 32 |
| 33 // Register prefs to be used by per-Profile instances of this class which |
| 34 // store invalidation state in Profile prefs. |
| 35 static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry); |
| 36 |
29 private: | 37 private: |
30 scoped_ptr<InvalidationService> invalidation_service_; | 38 scoped_ptr<InvalidationService> invalidation_service_; |
31 | 39 |
32 DISALLOW_COPY_AND_ASSIGN(ProfileInvalidationProvider); | 40 DISALLOW_COPY_AND_ASSIGN(ProfileInvalidationProvider); |
33 }; | 41 }; |
34 | 42 |
35 } // namespace invalidation | 43 } // namespace invalidation |
36 | 44 |
37 #endif // COMPONENTS_INVALIDATION_IMPL_PROFILE_INVALIDATION_PROVIDER_H_ | 45 #endif // COMPONENTS_INVALIDATION_IMPL_PROFILE_INVALIDATION_PROVIDER_H_ |
OLD | NEW |