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

Unified Diff: sync/test/null_invalidation_state_tracker.h

Issue 11415049: Implement features needed for local ack handling in InvalidationStateTracker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to HEAD Created 8 years, 1 month 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/test/null_invalidation_state_tracker.h
diff --git a/sync/test/null_invalidation_state_tracker.h b/sync/test/null_invalidation_state_tracker.h
new file mode 100644
index 0000000000000000000000000000000000000000..25afee1caa28276c823d43825be05f520ce43726
--- /dev/null
+++ b/sync/test/null_invalidation_state_tracker.h
@@ -0,0 +1,40 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
akalin 2012/11/30 02:53:02 can you put this in tools/? (It's not really test-
dcheng 2012/11/30 23:44:54 OK. I wasn't sure if you'd prefer this grouped wit
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef SYNC_TEST_NULL_INVALIDATION_STATE_TRACKER_H_
+#define SYNC_TEST_NULL_INVALIDATION_STATE_TRACKER_H_
+
+#include "base/compiler_specific.h"
+#include "base/memory/weak_ptr.h"
+#include "sync/notifier/invalidation_state_tracker.h"
+
+namespace syncer {
+
+class NullInvalidationStateTracker
+ : public base::SupportsWeakPtr<NullInvalidationStateTracker>,
+ public InvalidationStateTracker {
+ public:
+ NullInvalidationStateTracker();
+ virtual ~NullInvalidationStateTracker();
+
+ virtual InvalidationStateMap GetAllInvalidationStates() const OVERRIDE;
+ virtual void SetMaxVersionAndPayload(const invalidation::ObjectId& id,
+ int64 max_invalidation_version,
+ const std::string& payload) OVERRIDE;
+ virtual void Forget(const ObjectIdSet& ids) OVERRIDE;
+
+ virtual std::string GetBootstrapData() const OVERRIDE;
+ virtual void SetBootstrapData(const std::string& data) OVERRIDE;
+
+ virtual void GenerateAckHandles(
+ const ObjectIdSet& ids,
+ const scoped_refptr<base::TaskRunner>& task_runner,
+ base::Callback<void(const AckHandleMap&)> callback) OVERRIDE;
+ virtual void Acknowledge(const invalidation::ObjectId& id,
+ const AckHandle& ack_handle) OVERRIDE;
+};
+
+} // namespace syncer
+
+#endif // SYNC_TEST_NULL_INVALIDATION_STATE_TRACKER_H_

Powered by Google App Engine
This is Rietveld 408576698