| Index: chrome/android/java/src/org/chromium/chrome/browser/sync/SyncNotificationController.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/sync/SyncNotificationController.java b/chrome/android/java/src/org/chromium/chrome/browser/sync/SyncNotificationController.java
|
| index b5268517e3757c37f2a76c13eaf5480d0fdcc4d8..5bb269015bbd0c7ada247f6ee7b785b9cbe51cb1 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/sync/SyncNotificationController.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/sync/SyncNotificationController.java
|
| @@ -72,10 +72,7 @@ public class SyncNotificationController implements ProfileSyncService.SyncStateC
|
| } else if (mProfileSyncService.isSyncInitialized()
|
| && mProfileSyncService.isPassphraseRequiredForDecryption()) {
|
| switch (mProfileSyncService.getPassphraseType()) {
|
| - case IMPLICIT_PASSPHRASE:
|
| - message = R.string.sync_need_password;
|
| - intent = createPasswordIntent();
|
| - break;
|
| + case IMPLICIT_PASSPHRASE: // Falling through intentionally.
|
| case FROZEN_IMPLICIT_PASSPHRASE: // Falling through intentionally.
|
| case CUSTOM_PASSPHRASE:
|
| message = R.string.sync_need_passphrase;
|
|
|