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

Unified Diff: components/gcm_driver/gcm_driver_android.cc

Issue 445683003: [GCM] Exposing persistence of account mappings in GCM Driver (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updates based on self review Created 6 years, 4 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 ae643cd66072904bef8a32c81c44af4a5ea2bd7f..a6ab94a88f08624dfd6c0d5f38076a7c52521000 100644
--- a/components/gcm_driver/gcm_driver_android.cc
+++ b/components/gcm_driver/gcm_driver_android.cc
@@ -129,6 +129,13 @@ void GCMDriverAndroid::SetGCMRecording(const GetGCMStatisticsCallback& callback,
NOTIMPLEMENTED();
}
+void GCMDriverAndroid::UpdateAccountMapping(
+ const AccountMapping& account_mapping) {
+}
+
+void GCMDriverAndroid::RemoveAccountMapping(const std::string& account_id) {
+}
+
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