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..cc572bbb938e273be59c9454ba3eb14f9c8fd5d3 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::SetLastTokenFetchingTime(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()); |
} |