Chromium Code Reviews| 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_ |