| 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_FAKE_GCM_CLIENT_H_ | 5 #ifndef COMPONENTS_GCM_DRIVER_FAKE_GCM_CLIENT_H_ |
| 6 #define COMPONENTS_GCM_DRIVER_FAKE_GCM_CLIENT_H_ | 6 #define COMPONENTS_GCM_DRIVER_FAKE_GCM_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "components/gcm_driver/gcm_client.h" | 10 #include "components/gcm_driver/gcm_client.h" |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 const OutgoingMessage& message) override; | 49 const OutgoingMessage& message) override; |
| 50 void SetRecording(bool recording) override; | 50 void SetRecording(bool recording) override; |
| 51 void ClearActivityLogs() override; | 51 void ClearActivityLogs() override; |
| 52 GCMStatistics GetStatistics() const override; | 52 GCMStatistics GetStatistics() const override; |
| 53 void SetAccountTokens( | 53 void SetAccountTokens( |
| 54 const std::vector<AccountTokenInfo>& account_tokens) override; | 54 const std::vector<AccountTokenInfo>& account_tokens) override; |
| 55 void UpdateAccountMapping(const AccountMapping& account_mapping) override; | 55 void UpdateAccountMapping(const AccountMapping& account_mapping) override; |
| 56 void RemoveAccountMapping(const std::string& account_id) override; | 56 void RemoveAccountMapping(const std::string& account_id) override; |
| 57 void SetLastTokenFetchTime(const base::Time& time) override; | 57 void SetLastTokenFetchTime(const base::Time& time) override; |
| 58 void UpdateHeartbeatTimer(scoped_ptr<base::Timer> timer) override; | 58 void UpdateHeartbeatTimer(scoped_ptr<base::Timer> timer) override; |
| 59 void AddInstanceIDData(const std::string& app_id, |
| 60 const std::string& instance_id_data) override; |
| 61 void RemoveInstanceIDData(const std::string& app_id) override; |
| 62 std::string GetInstanceIDData(const std::string& app_id) override; |
| 59 | 63 |
| 60 // Initiate the start that has been delayed. | 64 // Initiate the start that has been delayed. |
| 61 // Called on UI thread. | 65 // Called on UI thread. |
| 62 void PerformDelayedStart(); | 66 void PerformDelayedStart(); |
| 63 | 67 |
| 64 // Simulate receiving something from the server. | 68 // Simulate receiving something from the server. |
| 65 // Called on UI thread. | 69 // Called on UI thread. |
| 66 void ReceiveMessage(const std::string& app_id, | 70 void ReceiveMessage(const std::string& app_id, |
| 67 const IncomingMessage& message); | 71 const IncomingMessage& message); |
| 68 void DeleteMessages(const std::string& app_id); | 72 void DeleteMessages(const std::string& app_id); |
| (...skipping 28 matching lines...) Expand all Loading... |
| 97 scoped_refptr<base::SequencedTaskRunner> ui_thread_; | 101 scoped_refptr<base::SequencedTaskRunner> ui_thread_; |
| 98 scoped_refptr<base::SequencedTaskRunner> io_thread_; | 102 scoped_refptr<base::SequencedTaskRunner> io_thread_; |
| 99 base::WeakPtrFactory<FakeGCMClient> weak_ptr_factory_; | 103 base::WeakPtrFactory<FakeGCMClient> weak_ptr_factory_; |
| 100 | 104 |
| 101 DISALLOW_COPY_AND_ASSIGN(FakeGCMClient); | 105 DISALLOW_COPY_AND_ASSIGN(FakeGCMClient); |
| 102 }; | 106 }; |
| 103 | 107 |
| 104 } // namespace gcm | 108 } // namespace gcm |
| 105 | 109 |
| 106 #endif // COMPONENTS_GCM_DRIVER_FAKE_GCM_CLIENT_H_ | 110 #endif // COMPONENTS_GCM_DRIVER_FAKE_GCM_CLIENT_H_ |
| OLD | NEW |