| 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 COMPONENTS_GCM_DRIVER_GCM_CLIENT_H_ | 5 #ifndef COMPONENTS_GCM_DRIVER_GCM_CLIENT_H_ |
| 6 #define COMPONENTS_GCM_DRIVER_GCM_CLIENT_H_ | 6 #define COMPONENTS_GCM_DRIVER_GCM_CLIENT_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 | 194 |
| 195 // Called when a message was acknowledged by the GCM server. | 195 // Called when a message was acknowledged by the GCM server. |
| 196 // |app_id|: application ID. | 196 // |app_id|: application ID. |
| 197 // |message_id|: ID of the acknowledged message. | 197 // |message_id|: ID of the acknowledged message. |
| 198 virtual void OnSendAcknowledged(const std::string& app_id, | 198 virtual void OnSendAcknowledged(const std::string& app_id, |
| 199 const std::string& message_id) = 0; | 199 const std::string& message_id) = 0; |
| 200 | 200 |
| 201 // Called when the GCM becomes ready. To get to this state, GCMClient | 201 // Called when the GCM becomes ready. To get to this state, GCMClient |
| 202 // finished loading from the GCM store and retrieved the device check-in | 202 // finished loading from the GCM store and retrieved the device check-in |
| 203 // from the server if it hadn't yet. | 203 // from the server if it hadn't yet. |
| 204 virtual void OnGCMReady() = 0; | 204 // |account_mappings|: a persisted list of accounts mapped to this GCM |
| 205 // client. |
| 206 virtual void OnGCMReady( |
| 207 const std::vector<AccountMapping>& account_mappings) = 0; |
| 205 | 208 |
| 206 // Called when activities are being recorded and a new activity has just | 209 // Called when activities are being recorded and a new activity has just |
| 207 // been recorded. | 210 // been recorded. |
| 208 virtual void OnActivityRecorded() = 0; | 211 virtual void OnActivityRecorded() = 0; |
| 209 | 212 |
| 210 // Called when a new connection is established and a successful handshake | 213 // Called when a new connection is established and a successful handshake |
| 211 // has been performed. | 214 // has been performed. |
| 212 virtual void OnConnected(const net::IPEndPoint& ip_endpoint) = 0; | 215 virtual void OnConnected(const net::IPEndPoint& ip_endpoint) = 0; |
| 213 | 216 |
| 214 // Called when the connection is interrupted. | 217 // Called when the connection is interrupted. |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 virtual void UpdateAccountMapping(const AccountMapping& account_mapping) = 0; | 292 virtual void UpdateAccountMapping(const AccountMapping& account_mapping) = 0; |
| 290 | 293 |
| 291 // Removes the account mapping related to |account_id| from the persistent | 294 // Removes the account mapping related to |account_id| from the persistent |
| 292 // store. | 295 // store. |
| 293 virtual void RemoveAccountMapping(const std::string& account_id) = 0; | 296 virtual void RemoveAccountMapping(const std::string& account_id) = 0; |
| 294 }; | 297 }; |
| 295 | 298 |
| 296 } // namespace gcm | 299 } // namespace gcm |
| 297 | 300 |
| 298 #endif // COMPONENTS_GCM_DRIVER_GCM_CLIENT_H_ | 301 #endif // COMPONENTS_GCM_DRIVER_GCM_CLIENT_H_ |
| OLD | NEW |