| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef SYNC_NOTIFIER_FAKE_INVALIDATOR_H_ | |
| 6 #define SYNC_NOTIFIER_FAKE_INVALIDATOR_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 #include "base/compiler_specific.h" | |
| 11 #include "sync/notifier/invalidation_util.h" | |
| 12 #include "sync/notifier/invalidator.h" | |
| 13 #include "sync/notifier/invalidator_registrar.h" | |
| 14 | |
| 15 namespace syncer { | |
| 16 | |
| 17 class FakeInvalidator : public Invalidator { | |
| 18 public: | |
| 19 FakeInvalidator(); | |
| 20 virtual ~FakeInvalidator(); | |
| 21 | |
| 22 bool IsHandlerRegistered(InvalidationHandler* handler) const; | |
| 23 ObjectIdSet GetRegisteredIds(InvalidationHandler* handler) const; | |
| 24 const std::string& GetUniqueId() const; | |
| 25 const std::string& GetCredentialsEmail() const; | |
| 26 const std::string& GetCredentialsToken() const; | |
| 27 const ObjectIdInvalidationMap& GetLastSentInvalidationMap() const; | |
| 28 | |
| 29 void EmitOnInvalidatorStateChange(InvalidatorState state); | |
| 30 void EmitOnIncomingInvalidation( | |
| 31 const ObjectIdInvalidationMap& invalidation_map); | |
| 32 | |
| 33 virtual void RegisterHandler(InvalidationHandler* handler) OVERRIDE; | |
| 34 virtual void UpdateRegisteredIds(InvalidationHandler* handler, | |
| 35 const ObjectIdSet& ids) OVERRIDE; | |
| 36 virtual void UnregisterHandler(InvalidationHandler* handler) OVERRIDE; | |
| 37 virtual void Acknowledge(const invalidation::ObjectId& id, | |
| 38 const AckHandle& ack_handle) OVERRIDE; | |
| 39 virtual InvalidatorState GetInvalidatorState() const OVERRIDE; | |
| 40 virtual void UpdateCredentials( | |
| 41 const std::string& email, const std::string& token) OVERRIDE; | |
| 42 virtual void SendInvalidation( | |
| 43 const ObjectIdInvalidationMap& invalidation_map) OVERRIDE; | |
| 44 | |
| 45 private: | |
| 46 InvalidatorRegistrar registrar_; | |
| 47 std::string state_; | |
| 48 std::string email_; | |
| 49 std::string token_; | |
| 50 ObjectIdInvalidationMap last_sent_invalidation_map_; | |
| 51 }; | |
| 52 | |
| 53 } // namespace syncer | |
| 54 | |
| 55 #endif // SYNC_NOTIFIER_FAKE_INVALIDATOR_H_ | |
| OLD | NEW |