diff options
author | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-12 03:04:13 +0000 |
---|---|---|
committer | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-12 03:04:13 +0000 |
commit | e3b0ee5f1dc1647f3f00439c9a7f9bb7e97345dd (patch) | |
tree | 1a3d69ff713b154f619f2115aab7284bbe6cac5e /chrome/browser/sync/notifier/sync_notifier.h | |
parent | 8c9add0068743ba549a235e4748e686d8622f3b3 (diff) | |
download | chromium_src-e3b0ee5f1dc1647f3f00439c9a7f9bb7e97345dd.zip chromium_src-e3b0ee5f1dc1647f3f00439c9a7f9bb7e97345dd.tar.gz chromium_src-e3b0ee5f1dc1647f3f00439c9a7f9bb7e97345dd.tar.bz2 |
[Sync] Persist invalidation versions to preferences
Define InvalidationVersionTracker interface and make SyncPrefs
inherit from it.
Pass down SyncPrefs (as InvalidationVersionTracker) all the way
down to ChromeInvalidationClient and call it when there is a new
max invalidation version.
Pass SyncBackendHost a WeakPtr instead of a raw pointer to SyncPrefs.
Made sync_listen_notifications work again.
BUG=85286
TEST=
Review URL: http://codereview.chromium.org/8188006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@104983 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync/notifier/sync_notifier.h')
-rw-r--r-- | chrome/browser/sync/notifier/sync_notifier.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/sync/notifier/sync_notifier.h b/chrome/browser/sync/notifier/sync_notifier.h index db1f703..f20000a 100644 --- a/chrome/browser/sync/notifier/sync_notifier.h +++ b/chrome/browser/sync/notifier/sync_notifier.h @@ -25,12 +25,12 @@ class SyncNotifier { virtual void RemoveObserver(SyncNotifierObserver* observer) = 0; // SetUniqueId must be called once, before any call to - // UpdateCredentials. |unique_id| should be a globally unique - // string. + // UpdateCredentials. |unique_id| should be a non-empty globally + // unique string. virtual void SetUniqueId(const std::string& unique_id) = 0; // SetState must be called once, before any call to - // UpdateCredentials. + // UpdateCredentials. |state| may be empty. virtual void SetState(const std::string& state) = 0; // The observers won't be notified of any notifications until |