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

Side by Side Diff: chrome/browser/sync/test/integration/fake_server_invalidation_service.h

Issue 296743005: sync: Implement fake server reflection blocking (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Split enable and disable methods 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/sync/test/integration/fake_server_invalidation_service.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/sync/test/integration/fake_server_invalidation_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698