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

Unified Diff: components/syncable_prefs/synced_pref_change_registrar.h

Issue 2459823002: [Sync] Rename syncable_prefs to sync_preferences. (Closed)
Patch Set: Created 4 years, 2 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/syncable_prefs/synced_pref_change_registrar.h
diff --git a/components/syncable_prefs/synced_pref_change_registrar.h b/components/syncable_prefs/synced_pref_change_registrar.h
deleted file mode 100644
index 8c18ab380e2f14936de1b0fbd50aa4289fb3eee9..0000000000000000000000000000000000000000
--- a/components/syncable_prefs/synced_pref_change_registrar.h
+++ /dev/null
@@ -1,61 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef COMPONENTS_SYNCABLE_PREFS_SYNCED_PREF_CHANGE_REGISTRAR_H_
-#define COMPONENTS_SYNCABLE_PREFS_SYNCED_PREF_CHANGE_REGISTRAR_H_
-
-#include <map>
-#include <string>
-
-#include "base/callback.h"
-#include "base/macros.h"
-#include "components/syncable_prefs/pref_service_syncable.h"
-#include "components/syncable_prefs/synced_pref_observer.h"
-
-namespace syncable_prefs {
-
-// Manages the registration of one or more SyncedPrefObservers on a
-// PrefServiceSyncable. This is modeled after base::PrefChangeRegistrar, and
-// it should be used whenever it's necessary to determine whether a pref change
-// has come from sync or from some other mechanism (managed, UI, external, etc.)
-class SyncedPrefChangeRegistrar : public SyncedPrefObserver {
- public:
- // Registered callbacks may optionally take a path argument.
- // The boolean argument indicates whether (true) or not (false)
- // the change was a result of syncing.
- typedef base::Callback<void(bool)> ChangeCallback;
- typedef base::Callback<void(const std::string&, bool)> NamedChangeCallback;
-
- explicit SyncedPrefChangeRegistrar(PrefServiceSyncable* pref_service);
- virtual ~SyncedPrefChangeRegistrar();
-
- // Register an observer callback for sync change events on the pref at
- // |path|. Only one callback may be registered per pref.
- void Add(const char* path, const ChangeCallback& callback);
- void Add(const char* path, const NamedChangeCallback& callback);
-
- // Remove the registered observer for |path|.
- void Remove(const char* path);
-
- // Remove all registered observers.
- void RemoveAll();
-
- // Indicates whether or not an observer is already registered for |path|.
- bool IsObserved(const char* path) const;
-
- private:
- // SyncedPrefObserver implementation
- void OnSyncedPrefChanged(const std::string& path, bool from_sync) override;
-
- typedef std::map<std::string, NamedChangeCallback> ObserverMap;
-
- PrefServiceSyncable* pref_service_;
- ObserverMap observers_;
-
- DISALLOW_COPY_AND_ASSIGN(SyncedPrefChangeRegistrar);
-};
-
-} // namespace syncable_prefs
-
-#endif // COMPONENTS_SYNCABLE_PREFS_SYNCED_PREF_CHANGE_REGISTRAR_H_
« no previous file with comments | « components/syncable_prefs/pref_service_syncable_unittest.cc ('k') | components/syncable_prefs/synced_pref_change_registrar.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698