| 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 #include "components/gcm_driver/fake_gcm_client.h" | 5 #include "components/gcm_driver/fake_gcm_client.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 10 #include "base/sequenced_task_runner.h" | 10 #include "base/sequenced_task_runner.h" |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 | 130 |
| 131 void FakeGCMClient::RemoveAccountMapping(const std::string& account_id) { | 131 void FakeGCMClient::RemoveAccountMapping(const std::string& account_id) { |
| 132 } | 132 } |
| 133 | 133 |
| 134 void FakeGCMClient::SetLastTokenFetchTime(const base::Time& time) { | 134 void FakeGCMClient::SetLastTokenFetchTime(const base::Time& time) { |
| 135 } | 135 } |
| 136 | 136 |
| 137 void FakeGCMClient::UpdateHeartbeatTimer(scoped_ptr<base::Timer> timer) { | 137 void FakeGCMClient::UpdateHeartbeatTimer(scoped_ptr<base::Timer> timer) { |
| 138 } | 138 } |
| 139 | 139 |
| 140 void FakeGCMClient::AddHeartbeatInterval(const std::string& scope, |
| 141 int interval_ms) { |
| 142 } |
| 143 |
| 144 void FakeGCMClient::RemoveHeartbeatInterval(const std::string& scope) { |
| 145 } |
| 146 |
| 140 void FakeGCMClient::PerformDelayedStart() { | 147 void FakeGCMClient::PerformDelayedStart() { |
| 141 DCHECK(ui_thread_->RunsTasksOnCurrentThread()); | 148 DCHECK(ui_thread_->RunsTasksOnCurrentThread()); |
| 142 | 149 |
| 143 io_thread_->PostTask( | 150 io_thread_->PostTask( |
| 144 FROM_HERE, | 151 FROM_HERE, |
| 145 base::Bind(&FakeGCMClient::DoStart, weak_ptr_factory_.GetWeakPtr())); | 152 base::Bind(&FakeGCMClient::DoStart, weak_ptr_factory_.GetWeakPtr())); |
| 146 } | 153 } |
| 147 | 154 |
| 148 void FakeGCMClient::ReceiveMessage(const std::string& app_id, | 155 void FakeGCMClient::ReceiveMessage(const std::string& app_id, |
| 149 const IncomingMessage& message) { | 156 const IncomingMessage& message) { |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 delegate_->OnMessageSendError(app_id, send_error_details); | 257 delegate_->OnMessageSendError(app_id, send_error_details); |
| 251 } | 258 } |
| 252 | 259 |
| 253 void FakeGCMClient::SendAcknowledgement(const std::string& app_id, | 260 void FakeGCMClient::SendAcknowledgement(const std::string& app_id, |
| 254 const std::string& message_id) { | 261 const std::string& message_id) { |
| 255 if (delegate_) | 262 if (delegate_) |
| 256 delegate_->OnSendAcknowledged(app_id, message_id); | 263 delegate_->OnSendAcknowledged(app_id, message_id); |
| 257 } | 264 } |
| 258 | 265 |
| 259 } // namespace gcm | 266 } // namespace gcm |
| OLD | NEW |