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

Unified Diff: chrome/browser/sync/glue/bridged_sync_notifier.cc

Issue 10451060: sync: migrate invalidation state from syncable::Directory to InvalidationStorage (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: include order Created 8 years, 7 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: chrome/browser/sync/glue/bridged_sync_notifier.cc
diff --git a/chrome/browser/sync/glue/bridged_sync_notifier.cc b/chrome/browser/sync/glue/bridged_sync_notifier.cc
index 63203c131d8fad6abe728dd60d50a2cbf30b0f81..659d6383f7eb19f536ec6dfd5edfbe6e1cdcf069 100644
--- a/chrome/browser/sync/glue/bridged_sync_notifier.cc
+++ b/chrome/browser/sync/glue/bridged_sync_notifier.cc
@@ -37,9 +37,9 @@ void BridgedSyncNotifier::SetUniqueId(const std::string& unique_id) {
delegate_->SetUniqueId(unique_id);
}
-void BridgedSyncNotifier::SetState(const std::string& state) {
+void BridgedSyncNotifier::SetStateDeprecated(const std::string& state) {
if (delegate_.get())
- delegate_->SetState(state);
+ delegate_->SetStateDeprecated(state);
}
void BridgedSyncNotifier::UpdateCredentials(
« no previous file with comments | « chrome/browser/sync/glue/bridged_sync_notifier.h ('k') | chrome/browser/sync/glue/bridged_sync_notifier_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698