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

Unified Diff: sync/notifier/invalidation_state_tracker.cc

Issue 10911084: Implement Invalidator::Acknowledge (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 3 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: sync/notifier/invalidation_state_tracker.cc
diff --git a/sync/api/sync_error_factory.cc b/sync/notifier/invalidation_state_tracker.cc
similarity index 52%
copy from sync/api/sync_error_factory.cc
copy to sync/notifier/invalidation_state_tracker.cc
index 11888fff8a025d9450f9e83ea2e8721adae7d020..882c98554bf9938fd308c71acb56e996af81d035 100644
--- a/sync/api/sync_error_factory.cc
+++ b/sync/notifier/invalidation_state_tracker.cc
@@ -2,14 +2,16 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "sync/api/sync_error_factory.h"
+#include "sync/notifier/invalidation_state_tracker.h"
namespace syncer {
-SyncErrorFactory::SyncErrorFactory() {
+LocalState::LocalState()
+ : expected(AckHandle::InvalidAckHandle()),
+ current(AckHandle::InvalidAckHandle()) {
}
-SyncErrorFactory::~SyncErrorFactory() {
+LocalState::~LocalState() {
}
} // namespace syncer

Powered by Google App Engine
This is Rietveld 408576698