OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_SYNC_TEST_INTEGRATION_FAKE_SERVER_INVALIDATION_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_SYNC_TEST_INTEGRATION_FAKE_SERVER_INVALIDATION_SERVICE_H_ |
6 #define CHROME_BROWSER_SYNC_TEST_INTEGRATION_FAKE_SERVER_INVALIDATION_SERVICE_H_ | 6 #define CHROME_BROWSER_SYNC_TEST_INTEGRATION_FAKE_SERVER_INVALIDATION_SERVICE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <utility> | 9 #include <utility> |
10 | 10 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 virtual void UnregisterInvalidationHandler( | 43 virtual void UnregisterInvalidationHandler( |
44 syncer::InvalidationHandler* handler) OVERRIDE; | 44 syncer::InvalidationHandler* handler) OVERRIDE; |
45 | 45 |
46 virtual syncer::InvalidatorState GetInvalidatorState() const OVERRIDE; | 46 virtual syncer::InvalidatorState GetInvalidatorState() const OVERRIDE; |
47 virtual std::string GetInvalidatorClientId() const OVERRIDE; | 47 virtual std::string GetInvalidatorClientId() const OVERRIDE; |
48 virtual invalidation::InvalidationLogger* GetInvalidationLogger() OVERRIDE; | 48 virtual invalidation::InvalidationLogger* GetInvalidationLogger() OVERRIDE; |
49 virtual void RequestDetailedStatus( | 49 virtual void RequestDetailedStatus( |
50 base::Callback<void(const base::DictionaryValue&)> caller) const OVERRIDE; | 50 base::Callback<void(const base::DictionaryValue&)> caller) const OVERRIDE; |
51 virtual IdentityProvider* GetIdentityProvider() OVERRIDE; | 51 virtual IdentityProvider* GetIdentityProvider() OVERRIDE; |
52 | 52 |
| 53 // Functions to enable or disable sending of self-notifications. In the real |
| 54 // world, clients do not receive notifications of their own commits. |
| 55 void EnableSelfNotifications(); |
| 56 void DisableSelfNotifications(); |
| 57 |
53 // FakeServer::Observer: | 58 // FakeServer::Observer: |
54 virtual void OnCommit(syncer::ModelTypeSet committed_model_types) OVERRIDE; | 59 virtual void OnCommit( |
| 60 const std::string& committer_id, |
| 61 syncer::ModelTypeSet committed_model_types) OVERRIDE; |
55 | 62 |
56 private: | 63 private: |
57 std::string client_id_; | 64 std::string client_id_; |
| 65 bool self_notify_; |
| 66 |
58 syncer::InvalidatorRegistrar invalidator_registrar_; | 67 syncer::InvalidatorRegistrar invalidator_registrar_; |
59 FakeProfileOAuth2TokenService token_service_; | 68 FakeProfileOAuth2TokenService token_service_; |
60 FakeIdentityProvider identity_provider_; | 69 FakeIdentityProvider identity_provider_; |
61 | 70 |
62 DISALLOW_COPY_AND_ASSIGN(FakeServerInvalidationService); | 71 DISALLOW_COPY_AND_ASSIGN(FakeServerInvalidationService); |
63 }; | 72 }; |
64 | 73 |
65 } // namespace fake_server | 74 } // namespace fake_server |
66 | 75 |
67 #endif // CHROME_BROWSER_SYNC_TEST_INTEGRATION_FAKE_SERVER_INVALIDATION_SERVICE
_H_ | 76 #endif // CHROME_BROWSER_SYNC_TEST_INTEGRATION_FAKE_SERVER_INVALIDATION_SERVICE
_H_ |
OLD | NEW |