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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/signin/AccountIdProvider.java

Issue 1553713002: rm notification about lack of Google Play Services (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/java/src/org/chromium/chrome/browser/signin/AccountIdProvider.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/signin/AccountIdProvider.java b/chrome/android/java/src/org/chromium/chrome/browser/signin/AccountIdProvider.java
index 902c22b0e78073a0f3c9c04fb2ee27c8fe7481b1..15f35d79d007946bb001dced695c7a05b56ddefb 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/signin/AccountIdProvider.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/signin/AccountIdProvider.java
@@ -57,12 +57,12 @@ public class AccountIdProvider {
* Google Play services is available.
*
* @param activity If an activity is provided, it will be used to show a Modal Dialog notifying
- * the user to update Google Play services, else a System notification is shown.
+ * the user to update Google Play services.
*/
public boolean canBeUsed(Context ctx, @Nullable Activity activity) {
UserRecoverableErrorHandler errorHandler = activity != null
? new UserRecoverableErrorHandler.ModalDialog(activity)
- : new UserRecoverableErrorHandler.SystemNotification();
+ : new UserRecoverableErrorHandler.Silent();
return ExternalAuthUtils.getInstance().canUseGooglePlayServices(ctx, errorHandler);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698