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

Unified Diff: sync/notifier/fake_invalidator.h

Issue 308413002: Revert of Move some sync/notifier to components/invalidation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
« no previous file with comments | « sync/notifier/fake_invalidation_state_tracker.cc ('k') | sync/notifier/fake_invalidator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/notifier/fake_invalidator.h
diff --git a/sync/notifier/fake_invalidator.h b/sync/notifier/fake_invalidator.h
new file mode 100644
index 0000000000000000000000000000000000000000..c94f82fbf1c52f5c3ef07afbbf900afb4fb4b6e1
--- /dev/null
+++ b/sync/notifier/fake_invalidator.h
@@ -0,0 +1,53 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef SYNC_NOTIFIER_FAKE_INVALIDATOR_H_
+#define SYNC_NOTIFIER_FAKE_INVALIDATOR_H_
+
+#include <string>
+
+#include "base/callback_forward.h"
+#include "base/compiler_specific.h"
+#include "sync/notifier/invalidation_util.h"
+#include "sync/notifier/invalidator.h"
+#include "sync/notifier/invalidator_registrar.h"
+
+namespace syncer {
+
+class FakeInvalidator : public Invalidator {
+ public:
+ FakeInvalidator();
+ virtual ~FakeInvalidator();
+
+ bool IsHandlerRegistered(InvalidationHandler* handler) const;
+ ObjectIdSet GetRegisteredIds(InvalidationHandler* handler) const;
+ const std::string& GetUniqueId() const;
+ const std::string& GetCredentialsEmail() const;
+ const std::string& GetCredentialsToken() const;
+
+ void EmitOnInvalidatorStateChange(InvalidatorState state);
+ void EmitOnIncomingInvalidation(
+ const ObjectIdInvalidationMap& invalidation_map);
+
+ virtual void RegisterHandler(InvalidationHandler* handler) OVERRIDE;
+ virtual void UpdateRegisteredIds(InvalidationHandler* handler,
+ const ObjectIdSet& ids) OVERRIDE;
+ virtual void UnregisterHandler(InvalidationHandler* handler) OVERRIDE;
+ virtual InvalidatorState GetInvalidatorState() const OVERRIDE;
+ virtual void UpdateCredentials(
+ const std::string& email, const std::string& token) OVERRIDE;
+ virtual void RequestDetailedStatus(
+ base::Callback<void(const base::DictionaryValue&)> callback) const
+ OVERRIDE;
+
+ private:
+ InvalidatorRegistrar registrar_;
+ std::string state_;
+ std::string email_;
+ std::string token_;
+};
+
+} // namespace syncer
+
+#endif // SYNC_NOTIFIER_FAKE_INVALIDATOR_H_
« no previous file with comments | « sync/notifier/fake_invalidation_state_tracker.cc ('k') | sync/notifier/fake_invalidator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698