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

Unified Diff: components/gcm_driver/gcm_driver_android.cc

Issue 330733002: Move IdentityProvider usage from GCMDriverDesktop to GCMProfileService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address feedback Created 6 years, 6 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 d70fb1d415ada45583e364bb9056bef813a5b911..ab6c0f78f1016c58d47087355e015705386d7925 100644
--- a/components/gcm_driver/gcm_driver_android.cc
+++ b/components/gcm_driver/gcm_driver_android.cc
@@ -92,6 +92,12 @@ bool GCMDriverAndroid::RegisterBindings(JNIEnv* env) {
return RegisterNativesImpl(env);
}
+void GCMDriverAndroid::SignIn() {
+}
+
+void GCMDriverAndroid::Purge() {
+}
+
void GCMDriverAndroid::Enable() {
}
@@ -122,10 +128,6 @@ void GCMDriverAndroid::SetGCMRecording(const GetGCMStatisticsCallback& callback,
NOTIMPLEMENTED();
}
-std::string GCMDriverAndroid::SignedInUserName() const {
- return std::string();
-}
-
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