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

Side by Side Diff: chrome/browser/sync/glue/bridged_invalidator.cc

Issue 10875064: Rename SyncNotifier->Invalidator and SyncNotifierObserver->InvalidationHandler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to ToT for landing 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
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 #include "chrome/browser/sync/glue/bridged_sync_notifier.h" 5 #include "chrome/browser/sync/glue/bridged_invalidator.h"
6 6
7 #include "chrome/browser/sync/glue/chrome_sync_notification_bridge.h" 7 #include "chrome/browser/sync/glue/chrome_sync_notification_bridge.h"
8 8
9 namespace browser_sync { 9 namespace browser_sync {
10 10
11 BridgedSyncNotifier::BridgedSyncNotifier( 11 BridgedInvalidator::BridgedInvalidator(
12 ChromeSyncNotificationBridge* bridge, 12 ChromeSyncNotificationBridge* bridge,
13 syncer::SyncNotifier* delegate) 13 syncer::Invalidator* delegate)
14 : bridge_(bridge), delegate_(delegate) { 14 : bridge_(bridge), delegate_(delegate) {
15 DCHECK(bridge_); 15 DCHECK(bridge_);
16 } 16 }
17 17
18 BridgedSyncNotifier::~BridgedSyncNotifier() { 18 BridgedInvalidator::~BridgedInvalidator() {
19 } 19 }
20 20
21 void BridgedSyncNotifier::RegisterHandler( 21 void BridgedInvalidator::RegisterHandler(
22 syncer::SyncNotifierObserver* handler) { 22 syncer::InvalidationHandler* handler) {
23 if (delegate_.get()) 23 if (delegate_.get())
24 delegate_->RegisterHandler(handler); 24 delegate_->RegisterHandler(handler);
25 bridge_->RegisterHandler(handler); 25 bridge_->RegisterHandler(handler);
26 } 26 }
27 27
28 void BridgedSyncNotifier::UpdateRegisteredIds( 28 void BridgedInvalidator::UpdateRegisteredIds(
29 syncer::SyncNotifierObserver* handler, 29 syncer::InvalidationHandler* handler,
30 const syncer::ObjectIdSet& ids) { 30 const syncer::ObjectIdSet& ids) {
31 if (delegate_.get()) 31 if (delegate_.get())
32 delegate_->UpdateRegisteredIds(handler, ids); 32 delegate_->UpdateRegisteredIds(handler, ids);
33 bridge_->UpdateRegisteredIds(handler, ids); 33 bridge_->UpdateRegisteredIds(handler, ids);
34 } 34 }
35 35
36 void BridgedSyncNotifier::UnregisterHandler( 36 void BridgedInvalidator::UnregisterHandler(
37 syncer::SyncNotifierObserver* handler) { 37 syncer::InvalidationHandler* handler) {
38 if (delegate_.get()) 38 if (delegate_.get())
39 delegate_->UnregisterHandler(handler); 39 delegate_->UnregisterHandler(handler);
40 bridge_->UnregisterHandler(handler); 40 bridge_->UnregisterHandler(handler);
41 } 41 }
42 42
43 void BridgedSyncNotifier::SetUniqueId(const std::string& unique_id) { 43 void BridgedInvalidator::SetUniqueId(const std::string& unique_id) {
44 if (delegate_.get()) 44 if (delegate_.get())
45 delegate_->SetUniqueId(unique_id); 45 delegate_->SetUniqueId(unique_id);
46 } 46 }
47 47
48 void BridgedSyncNotifier::SetStateDeprecated(const std::string& state) { 48 void BridgedInvalidator::SetStateDeprecated(const std::string& state) {
49 if (delegate_.get()) 49 if (delegate_.get())
50 delegate_->SetStateDeprecated(state); 50 delegate_->SetStateDeprecated(state);
51 } 51 }
52 52
53 void BridgedSyncNotifier::UpdateCredentials( 53 void BridgedInvalidator::UpdateCredentials(
54 const std::string& email, const std::string& token) { 54 const std::string& email, const std::string& token) {
55 if (delegate_.get()) 55 if (delegate_.get())
56 delegate_->UpdateCredentials(email, token); 56 delegate_->UpdateCredentials(email, token);
57 } 57 }
58 58
59 void BridgedSyncNotifier::SendNotification( 59 void BridgedInvalidator::SendNotification(
60 syncer::ModelTypeSet changed_types) { 60 syncer::ModelTypeSet changed_types) {
61 if (delegate_.get()) 61 if (delegate_.get())
62 delegate_->SendNotification(changed_types); 62 delegate_->SendNotification(changed_types);
63 } 63 }
64 64
65 } // namespace browser_sync 65 } // namespace browser_sync
OLDNEW
« no previous file with comments | « chrome/browser/sync/glue/bridged_invalidator.h ('k') | chrome/browser/sync/glue/bridged_invalidator_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698