Java Code Examples for org.chromium.chrome.browser.sync.ProfileSyncService#hasExplicitPassphraseTime()
The following examples show how to use
org.chromium.chrome.browser.sync.ProfileSyncService#hasExplicitPassphraseTime() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PassphraseDialogFragment.java From delion with Apache License 2.0 | 6 votes |
private String getPromptText() { ProfileSyncService pss = ProfileSyncService.get(); String accountName = pss.getCurrentSignedInAccountText() + "\n\n"; PassphraseType passphraseType = pss.getPassphraseType(); if (pss.hasExplicitPassphraseTime()) { switch (passphraseType) { case FROZEN_IMPLICIT_PASSPHRASE: return accountName + pss.getSyncEnterGooglePassphraseBodyWithDateText(); case CUSTOM_PASSPHRASE: return accountName + pss.getSyncEnterCustomPassphraseBodyWithDateText(); case IMPLICIT_PASSPHRASE: // Falling through intentionally. case KEYSTORE_PASSPHRASE: // Falling through intentionally. default: Log.w(TAG, "Found incorrect passphrase type " + passphraseType + ". Falling back to default string."); return accountName + pss.getSyncEnterCustomPassphraseBodyText(); } } return accountName + pss.getSyncEnterCustomPassphraseBodyText(); }
Example 2
Source File: PassphraseDialogFragment.java From AndroidChromium with Apache License 2.0 | 6 votes |
private String getPromptText() { ProfileSyncService pss = ProfileSyncService.get(); String accountName = pss.getCurrentSignedInAccountText() + "\n\n"; PassphraseType passphraseType = pss.getPassphraseType(); if (pss.hasExplicitPassphraseTime()) { switch (passphraseType) { case FROZEN_IMPLICIT_PASSPHRASE: return accountName + pss.getSyncEnterGooglePassphraseBodyWithDateText(); case CUSTOM_PASSPHRASE: return accountName + pss.getSyncEnterCustomPassphraseBodyWithDateText(); case IMPLICIT_PASSPHRASE: // Falling through intentionally. case KEYSTORE_PASSPHRASE: // Falling through intentionally. default: Log.w(TAG, "Found incorrect passphrase type " + passphraseType + ". Falling back to default string."); return accountName + pss.getSyncEnterCustomPassphraseBodyText(); } } return accountName + pss.getSyncEnterCustomPassphraseBodyText(); }
Example 3
Source File: PassphraseDialogFragment.java From 365browser with Apache License 2.0 | 6 votes |
private String getPromptText() { ProfileSyncService pss = ProfileSyncService.get(); String accountName = pss.getCurrentSignedInAccountText() + "\n\n"; PassphraseType passphraseType = pss.getPassphraseType(); if (pss.hasExplicitPassphraseTime()) { switch (passphraseType) { case FROZEN_IMPLICIT_PASSPHRASE: return accountName + pss.getSyncEnterGooglePassphraseBodyWithDateText(); case CUSTOM_PASSPHRASE: return accountName + pss.getSyncEnterCustomPassphraseBodyWithDateText(); case IMPLICIT_PASSPHRASE: // Falling through intentionally. case KEYSTORE_PASSPHRASE: // Falling through intentionally. default: Log.w(TAG, "Found incorrect passphrase type " + passphraseType + ". Falling back to default string."); return accountName + pss.getSyncEnterCustomPassphraseBodyText(); } } return accountName + pss.getSyncEnterCustomPassphraseBodyText(); }