Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(334)

Unified Diff: components/gcm_driver/gcm_driver_android.cc

Issue 681453004: [GCM] Adding last token fetching time handling (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/gcm_driver/gcm_driver_android.cc
diff --git a/components/gcm_driver/gcm_driver_android.cc b/components/gcm_driver/gcm_driver_android.cc
index bee1980153d078e8f7654e704594bc578aecf427..317f9d4a0812f7294353605d96938038f13e56cd 100644
--- a/components/gcm_driver/gcm_driver_android.cc
+++ b/components/gcm_driver/gcm_driver_android.cc
@@ -153,6 +153,14 @@ void GCMDriverAndroid::RemoveAccountMapping(const std::string& account_id) {
NOTIMPLEMENTED();
}
+base::Time GCMDriverAndroid::GetLastTokenFetchingTime() {
+ NOTIMPLEMENTED();
+}
+
+void GCMDriverAndroid::SetLastTokenFetchingTime(const base::Time& time) {
+ NOTIMPLEMENTED();
+}
+
GCMClient::Result GCMDriverAndroid::EnsureStarted() {
// TODO(johnme): Maybe we should check if GMS is available?
return GCMClient::SUCCESS;

Powered by Google App Engine
This is Rietveld 408576698