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 #include "components/invalidation/impl/profile_invalidation_provider.h" | 5 #include "components/invalidation/impl/profile_invalidation_provider.h" |
6 | 6 |
| 7 #include "components/invalidation/impl/invalidation_prefs.h" |
7 #include "components/invalidation/public/invalidation_service.h" | 8 #include "components/invalidation/public/invalidation_service.h" |
| 9 #include "components/pref_registry/pref_registry_syncable.h" |
8 | 10 |
9 namespace invalidation { | 11 namespace invalidation { |
10 | 12 |
11 ProfileInvalidationProvider::ProfileInvalidationProvider( | 13 ProfileInvalidationProvider::ProfileInvalidationProvider( |
12 scoped_ptr<InvalidationService> invalidation_service) | 14 scoped_ptr<InvalidationService> invalidation_service) |
13 : invalidation_service_(invalidation_service.Pass()) { | 15 : invalidation_service_(invalidation_service.Pass()) { |
14 } | 16 } |
15 | 17 |
16 ProfileInvalidationProvider::~ProfileInvalidationProvider() { | 18 ProfileInvalidationProvider::~ProfileInvalidationProvider() { |
17 } | 19 } |
18 | 20 |
19 InvalidationService* ProfileInvalidationProvider::GetInvalidationService() { | 21 InvalidationService* ProfileInvalidationProvider::GetInvalidationService() { |
20 return invalidation_service_.get(); | 22 return invalidation_service_.get(); |
21 } | 23 } |
22 | 24 |
23 void ProfileInvalidationProvider::Shutdown() { | 25 void ProfileInvalidationProvider::Shutdown() { |
24 invalidation_service_.reset(); | 26 invalidation_service_.reset(); |
25 } | 27 } |
26 | 28 |
| 29 // static |
| 30 void ProfileInvalidationProvider::RegisterProfilePrefs( |
| 31 user_prefs::PrefRegistrySyncable* registry) { |
| 32 registry->RegisterBooleanPref( |
| 33 prefs::kInvalidationServiceUseGCMChannel, |
| 34 true); // if no value in prefs, use GCM channel. |
| 35 } |
| 36 |
27 } // namespace invalidation | 37 } // namespace invalidation |
OLD | NEW |