| 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_IMPL_H_ | 5 #ifndef COMPONENTS_GCM_DRIVER_GCM_CLIENT_IMPL_H_ |
| 6 #define COMPONENTS_GCM_DRIVER_GCM_CLIENT_IMPL_H_ | 6 #define COMPONENTS_GCM_DRIVER_GCM_CLIENT_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 void SetAccountTokens( | 123 void SetAccountTokens( |
| 124 const std::vector<AccountTokenInfo>& account_tokens) override; | 124 const std::vector<AccountTokenInfo>& account_tokens) override; |
| 125 void UpdateAccountMapping(const AccountMapping& account_mapping) override; | 125 void UpdateAccountMapping(const AccountMapping& account_mapping) override; |
| 126 void RemoveAccountMapping(const std::string& account_id) override; | 126 void RemoveAccountMapping(const std::string& account_id) override; |
| 127 void SetLastTokenFetchTime(const base::Time& time) override; | 127 void SetLastTokenFetchTime(const base::Time& time) override; |
| 128 void UpdateHeartbeatTimer(scoped_ptr<base::Timer> timer) override; | 128 void UpdateHeartbeatTimer(scoped_ptr<base::Timer> timer) override; |
| 129 void AddInstanceIDData(const std::string& app_id, | 129 void AddInstanceIDData(const std::string& app_id, |
| 130 const std::string& instance_id_data) override; | 130 const std::string& instance_id_data) override; |
| 131 void RemoveInstanceIDData(const std::string& app_id) override; | 131 void RemoveInstanceIDData(const std::string& app_id) override; |
| 132 std::string GetInstanceIDData(const std::string& app_id) override; | 132 std::string GetInstanceIDData(const std::string& app_id) override; |
| 133 void AddHeartbeatInterval(const std::string& scope, int interval_ms) override; |
| 134 void RemoveHeartbeatInterval(const std::string& scope) override; |
| 133 | 135 |
| 134 // GCMStatsRecorder::Delegate implemenation. | 136 // GCMStatsRecorder::Delegate implemenation. |
| 135 void OnActivityRecorded() override; | 137 void OnActivityRecorded() override; |
| 136 | 138 |
| 137 // ConnectionFactory::ConnectionListener implementation. | 139 // ConnectionFactory::ConnectionListener implementation. |
| 138 void OnConnected(const GURL& current_server, | 140 void OnConnected(const GURL& current_server, |
| 139 const net::IPEndPoint& ip_endpoint) override; | 141 const net::IPEndPoint& ip_endpoint) override; |
| 140 void OnDisconnected() override; | 142 void OnDisconnected() override; |
| 141 | 143 |
| 142 private: | 144 private: |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 | 355 |
| 354 // Factory for creating references in callbacks. | 356 // Factory for creating references in callbacks. |
| 355 base::WeakPtrFactory<GCMClientImpl> weak_ptr_factory_; | 357 base::WeakPtrFactory<GCMClientImpl> weak_ptr_factory_; |
| 356 | 358 |
| 357 DISALLOW_COPY_AND_ASSIGN(GCMClientImpl); | 359 DISALLOW_COPY_AND_ASSIGN(GCMClientImpl); |
| 358 }; | 360 }; |
| 359 | 361 |
| 360 } // namespace gcm | 362 } // namespace gcm |
| 361 | 363 |
| 362 #endif // COMPONENTS_GCM_DRIVER_GCM_CLIENT_IMPL_H_ | 364 #endif // COMPONENTS_GCM_DRIVER_GCM_CLIENT_IMPL_H_ |
| OLD | NEW |