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

Side by Side Diff: components/gcm_driver/gcm_client_impl.h

Issue 1124783002: [GCM] Wiring heartbeat interval calls to GCMDriver (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@store-heartbeat-gcm
Patch Set: Adding MCS client tests for storing heartbeat interval Created 5 years, 7 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
OLDNEW
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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 const OutgoingMessage& message) override; 119 const OutgoingMessage& message) override;
120 void SetRecording(bool recording) override; 120 void SetRecording(bool recording) override;
121 void ClearActivityLogs() override; 121 void ClearActivityLogs() override;
122 GCMStatistics GetStatistics() const override; 122 GCMStatistics GetStatistics() const override;
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 AddHeartbeatInterval(const std::string& scope, int interval_ms) override;
130 void RemoveHeartbeatInterval(const std::string& scope) override;
129 131
130 // GCMStatsRecorder::Delegate implemenation. 132 // GCMStatsRecorder::Delegate implemenation.
131 void OnActivityRecorded() override; 133 void OnActivityRecorded() override;
132 134
133 // ConnectionFactory::ConnectionListener implementation. 135 // ConnectionFactory::ConnectionListener implementation.
134 void OnConnected(const GURL& current_server, 136 void OnConnected(const GURL& current_server,
135 const net::IPEndPoint& ip_endpoint) override; 137 const net::IPEndPoint& ip_endpoint) override;
136 void OnDisconnected() override; 138 void OnDisconnected() override;
137 139
138 private: 140 private:
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
346 348
347 // Factory for creating references in callbacks. 349 // Factory for creating references in callbacks.
348 base::WeakPtrFactory<GCMClientImpl> weak_ptr_factory_; 350 base::WeakPtrFactory<GCMClientImpl> weak_ptr_factory_;
349 351
350 DISALLOW_COPY_AND_ASSIGN(GCMClientImpl); 352 DISALLOW_COPY_AND_ASSIGN(GCMClientImpl);
351 }; 353 };
352 354
353 } // namespace gcm 355 } // namespace gcm
354 356
355 #endif // COMPONENTS_GCM_DRIVER_GCM_CLIENT_IMPL_H_ 357 #endif // COMPONENTS_GCM_DRIVER_GCM_CLIENT_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698