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

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

Issue 10545170: [Sync] Propagate XMPP auth errors to SyncNotifierObservers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix compile error Created 8 years, 6 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 // An implementation of SyncNotifier that wraps an invalidation 5 // An implementation of SyncNotifier that wraps an invalidation
6 // client. Handles the details of connecting to XMPP and hooking it 6 // client. Handles the details of connecting to XMPP and hooking it
7 // up to the invalidation client. 7 // up to the invalidation client.
8 // 8 //
9 // You probably don't want to use this directly; use 9 // You probably don't want to use this directly; use
10 // NonBlockingInvalidationNotifier. 10 // NonBlockingInvalidationNotifier.
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 virtual void UpdateCredentials( 57 virtual void UpdateCredentials(
58 const std::string& email, const std::string& token) OVERRIDE; 58 const std::string& email, const std::string& token) OVERRIDE;
59 virtual void UpdateEnabledTypes( 59 virtual void UpdateEnabledTypes(
60 syncable::ModelTypeSet enabled_types) OVERRIDE; 60 syncable::ModelTypeSet enabled_types) OVERRIDE;
61 virtual void SendNotification( 61 virtual void SendNotification(
62 syncable::ModelTypeSet changed_types) OVERRIDE; 62 syncable::ModelTypeSet changed_types) OVERRIDE;
63 63
64 // ChromeInvalidationClient::Listener implementation. 64 // ChromeInvalidationClient::Listener implementation.
65 virtual void OnInvalidate( 65 virtual void OnInvalidate(
66 const syncable::ModelTypePayloadMap& type_payloads) OVERRIDE; 66 const syncable::ModelTypePayloadMap& type_payloads) OVERRIDE;
67 virtual void OnSessionStatusChanged(bool has_session) OVERRIDE; 67 virtual void OnSyncNotifierStateChange(
68 SyncNotifierState sync_notifier_state) OVERRIDE;
68 69
69 private: 70 private:
70 // We start off in the STOPPED state. When we get our initial 71 // We start off in the STOPPED state. When we get our initial
71 // credentials, we connect and move to the CONNECTING state. When 72 // credentials, we connect and move to the CONNECTING state. When
72 // we're connected we start the invalidation client and move to the 73 // we're connected we start the invalidation client and move to the
73 // STARTED state. We never go back to a previous state. 74 // STARTED state. We never go back to a previous state.
74 enum State { 75 enum State {
75 STOPPED, 76 STOPPED,
76 CONNECTING, 77 CONNECTING,
77 STARTED 78 STARTED
(...skipping 23 matching lines...) Expand all
101 102
102 // The invalidation client. 103 // The invalidation client.
103 ChromeInvalidationClient invalidation_client_; 104 ChromeInvalidationClient invalidation_client_;
104 105
105 DISALLOW_COPY_AND_ASSIGN(InvalidationNotifier); 106 DISALLOW_COPY_AND_ASSIGN(InvalidationNotifier);
106 }; 107 };
107 108
108 } // namespace sync_notifier 109 } // namespace sync_notifier
109 110
110 #endif // SYNC_NOTIFIER_INVALIDATION_NOTIFIER_H_ 111 #endif // SYNC_NOTIFIER_INVALIDATION_NOTIFIER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698