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

Side by Side Diff: components/syncable_prefs/synced_pref_change_registrar.h

Issue 1549993003: Switch to standard integer types in components/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_SYNCABLE_PREFS_SYNCED_PREF_CHANGE_REGISTRAR_H_ 5 #ifndef COMPONENTS_SYNCABLE_PREFS_SYNCED_PREF_CHANGE_REGISTRAR_H_
6 #define COMPONENTS_SYNCABLE_PREFS_SYNCED_PREF_CHANGE_REGISTRAR_H_ 6 #define COMPONENTS_SYNCABLE_PREFS_SYNCED_PREF_CHANGE_REGISTRAR_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 10
11 #include "base/callback.h" 11 #include "base/callback.h"
12 #include "base/macros.h"
12 #include "components/syncable_prefs/pref_service_syncable.h" 13 #include "components/syncable_prefs/pref_service_syncable.h"
13 #include "components/syncable_prefs/synced_pref_observer.h" 14 #include "components/syncable_prefs/synced_pref_observer.h"
14 15
15 namespace syncable_prefs { 16 namespace syncable_prefs {
16 17
17 // Manages the registration of one or more SyncedPrefObservers on a 18 // Manages the registration of one or more SyncedPrefObservers on a
18 // PrefServiceSyncable. This is modeled after base::PrefChangeRegistrar, and 19 // PrefServiceSyncable. This is modeled after base::PrefChangeRegistrar, and
19 // it should be used whenever it's necessary to determine whether a pref change 20 // it should be used whenever it's necessary to determine whether a pref change
20 // has come from sync or from some other mechanism (managed, UI, external, etc.) 21 // has come from sync or from some other mechanism (managed, UI, external, etc.)
21 class SyncedPrefChangeRegistrar : public SyncedPrefObserver { 22 class SyncedPrefChangeRegistrar : public SyncedPrefObserver {
(...skipping 29 matching lines...) Expand all
51 52
52 PrefServiceSyncable* pref_service_; 53 PrefServiceSyncable* pref_service_;
53 ObserverMap observers_; 54 ObserverMap observers_;
54 55
55 DISALLOW_COPY_AND_ASSIGN(SyncedPrefChangeRegistrar); 56 DISALLOW_COPY_AND_ASSIGN(SyncedPrefChangeRegistrar);
56 }; 57 };
57 58
58 } // namespace syncable_prefs 59 } // namespace syncable_prefs
59 60
60 #endif // COMPONENTS_SYNCABLE_PREFS_SYNCED_PREF_CHANGE_REGISTRAR_H_ 61 #endif // COMPONENTS_SYNCABLE_PREFS_SYNCED_PREF_CHANGE_REGISTRAR_H_
OLDNEW
« no previous file with comments | « components/syncable_prefs/pref_service_syncable_unittest.cc ('k') | components/syncable_prefs/testing_pref_service_syncable.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698