| Index: components/gcm_driver/fake_gcm_client.cc
|
| diff --git a/components/gcm_driver/fake_gcm_client.cc b/components/gcm_driver/fake_gcm_client.cc
|
| index 605122249165ac171af3e5e52a8bb201073e7235..fdf636f2217dbbb714ca3597b262515ee26c457a 100644
|
| --- a/components/gcm_driver/fake_gcm_client.cc
|
| +++ b/components/gcm_driver/fake_gcm_client.cc
|
| @@ -130,6 +130,9 @@ void FakeGCMClient::UpdateAccountMapping(
|
| void FakeGCMClient::RemoveAccountMapping(const std::string& account_id) {
|
| }
|
|
|
| +void FakeGCMClient::SetLastTokenFetchTime(const base::Time& time) {
|
| +}
|
| +
|
| void FakeGCMClient::PerformDelayedLoading() {
|
| DCHECK(ui_thread_->RunsTasksOnCurrentThread());
|
|
|
| @@ -183,7 +186,7 @@ std::string FakeGCMClient::GetRegistrationIdFromSenderIds(
|
| }
|
|
|
| void FakeGCMClient::CheckinFinished() {
|
| - delegate_->OnGCMReady(std::vector<AccountMapping>());
|
| + delegate_->OnGCMReady(std::vector<AccountMapping>(), base::Time());
|
| delegate_->OnConnected(net::IPEndPoint());
|
| }
|
|
|
|
|