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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 void FakeGCMClient::UpdateAccountMapping( | 126 void FakeGCMClient::UpdateAccountMapping( |
127 const AccountMapping& account_mapping) { | 127 const AccountMapping& account_mapping) { |
128 } | 128 } |
129 | 129 |
130 void FakeGCMClient::RemoveAccountMapping(const std::string& account_id) { | 130 void FakeGCMClient::RemoveAccountMapping(const std::string& account_id) { |
131 } | 131 } |
132 | 132 |
133 void FakeGCMClient::SetLastTokenFetchTime(const base::Time& time) { | 133 void FakeGCMClient::SetLastTokenFetchTime(const base::Time& time) { |
134 } | 134 } |
135 | 135 |
| 136 MCSClient* FakeGCMClient::GetMCSClient() const { |
| 137 return NULL; |
| 138 } |
| 139 |
136 void FakeGCMClient::PerformDelayedLoading() { | 140 void FakeGCMClient::PerformDelayedLoading() { |
137 DCHECK(ui_thread_->RunsTasksOnCurrentThread()); | 141 DCHECK(ui_thread_->RunsTasksOnCurrentThread()); |
138 | 142 |
139 io_thread_->PostTask( | 143 io_thread_->PostTask( |
140 FROM_HERE, | 144 FROM_HERE, |
141 base::Bind(&FakeGCMClient::DoLoading, weak_ptr_factory_.GetWeakPtr())); | 145 base::Bind(&FakeGCMClient::DoLoading, weak_ptr_factory_.GetWeakPtr())); |
142 } | 146 } |
143 | 147 |
144 void FakeGCMClient::ReceiveMessage(const std::string& app_id, | 148 void FakeGCMClient::ReceiveMessage(const std::string& app_id, |
145 const IncomingMessage& message) { | 149 const IncomingMessage& message) { |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 delegate_->OnMessageSendError(app_id, send_error_details); | 251 delegate_->OnMessageSendError(app_id, send_error_details); |
248 } | 252 } |
249 | 253 |
250 void FakeGCMClient::SendAcknowledgement(const std::string& app_id, | 254 void FakeGCMClient::SendAcknowledgement(const std::string& app_id, |
251 const std::string& message_id) { | 255 const std::string& message_id) { |
252 if (delegate_) | 256 if (delegate_) |
253 delegate_->OnSendAcknowledged(app_id, message_id); | 257 delegate_->OnSendAcknowledged(app_id, message_id); |
254 } | 258 } |
255 | 259 |
256 } // namespace gcm | 260 } // namespace gcm |
OLD | NEW |