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

Side by Side Diff: sync/notifier/non_blocking_invalidator.h

Issue 10874096: [Sync] Rework Invalidator-related unit tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 8 years, 3 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 | « sync/notifier/invalidator_test_template.h ('k') | sync/notifier/non_blocking_invalidator.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 (c) 2012 The Chromium Authors. All rights reserved. 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 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 // An implementation of SyncNotifier that wraps InvalidationNotifier 5 // An implementation of SyncNotifier that wraps InvalidationNotifier
6 // on its own thread. 6 // on its own thread.
7 7
8 #ifndef SYNC_NOTIFIER_NON_BLOCKING_INVALIDATOR_H_ 8 #ifndef SYNC_NOTIFIER_NON_BLOCKING_INVALIDATOR_H_
9 #define SYNC_NOTIFIER_NON_BLOCKING_INVALIDATOR_H_ 9 #define SYNC_NOTIFIER_NON_BLOCKING_INVALIDATOR_H_
10 10
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 47
48 // Invalidator implementation. 48 // Invalidator implementation.
49 virtual void RegisterHandler(InvalidationHandler* handler) OVERRIDE; 49 virtual void RegisterHandler(InvalidationHandler* handler) OVERRIDE;
50 virtual void UpdateRegisteredIds(InvalidationHandler* handler, 50 virtual void UpdateRegisteredIds(InvalidationHandler* handler,
51 const ObjectIdSet& ids) OVERRIDE; 51 const ObjectIdSet& ids) OVERRIDE;
52 virtual void UnregisterHandler(InvalidationHandler* handler) OVERRIDE; 52 virtual void UnregisterHandler(InvalidationHandler* handler) OVERRIDE;
53 virtual void SetUniqueId(const std::string& unique_id) OVERRIDE; 53 virtual void SetUniqueId(const std::string& unique_id) OVERRIDE;
54 virtual void SetStateDeprecated(const std::string& state) OVERRIDE; 54 virtual void SetStateDeprecated(const std::string& state) OVERRIDE;
55 virtual void UpdateCredentials( 55 virtual void UpdateCredentials(
56 const std::string& email, const std::string& token) OVERRIDE; 56 const std::string& email, const std::string& token) OVERRIDE;
57 virtual void SendNotification(ModelTypeSet changed_types) OVERRIDE; 57 virtual void SendNotification(const ObjectIdStateMap& id_state_map) OVERRIDE;
58 58
59 // InvalidationHandler implementation. 59 // InvalidationHandler implementation.
60 virtual void OnNotificationsEnabled() OVERRIDE; 60 virtual void OnNotificationsEnabled() OVERRIDE;
61 virtual void OnNotificationsDisabled( 61 virtual void OnNotificationsDisabled(
62 NotificationsDisabledReason reason) OVERRIDE; 62 NotificationsDisabledReason reason) OVERRIDE;
63 virtual void OnIncomingNotification( 63 virtual void OnIncomingNotification(
64 const ObjectIdStateMap& id_state_map, 64 const ObjectIdStateMap& id_state_map,
65 IncomingNotificationSource source) OVERRIDE; 65 IncomingNotificationSource source) OVERRIDE;
66 66
67 private: 67 private:
68 class Core; 68 class Core;
69 69
70 base::WeakPtrFactory<NonBlockingInvalidator> weak_ptr_factory_; 70 base::WeakPtrFactory<NonBlockingInvalidator> weak_ptr_factory_;
71 71
72 InvalidatorRegistrar registrar_; 72 InvalidatorRegistrar registrar_;
73 73
74 // The real guts of NonBlockingInvalidator, which allows this class to live 74 // The real guts of NonBlockingInvalidator, which allows this class to live
75 // completely on the parent thread. 75 // completely on the parent thread.
76 scoped_refptr<Core> core_; 76 scoped_refptr<Core> core_;
77 scoped_refptr<base::SingleThreadTaskRunner> parent_task_runner_; 77 scoped_refptr<base::SingleThreadTaskRunner> parent_task_runner_;
78 scoped_refptr<base::SingleThreadTaskRunner> network_task_runner_; 78 scoped_refptr<base::SingleThreadTaskRunner> network_task_runner_;
79 79
80 DISALLOW_COPY_AND_ASSIGN(NonBlockingInvalidator); 80 DISALLOW_COPY_AND_ASSIGN(NonBlockingInvalidator);
81 }; 81 };
82 82
83 } // namespace syncer 83 } // namespace syncer
84 84
85 #endif // SYNC_NOTIFIER_NON_BLOCKING_INVALIDATOR_H_ 85 #endif // SYNC_NOTIFIER_NON_BLOCKING_INVALIDATOR_H_
OLDNEW
« no previous file with comments | « sync/notifier/invalidator_test_template.h ('k') | sync/notifier/non_blocking_invalidator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698