diff options
author | johnnyg@chromium.org <johnnyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-13 23:39:45 +0000 |
---|---|---|
committer | johnnyg@chromium.org <johnnyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-13 23:39:45 +0000 |
commit | 2e610e9cd18750dc905a4f4feea8f5478256a28d (patch) | |
tree | 685d63f02c60fcab072651e34158daae8eda2b7f /chrome/browser/sync/sync_setup_flow.h | |
parent | 42930de46c386ff5104138d003486bd12a78c45f (diff) | |
download | chromium_src-2e610e9cd18750dc905a4f4feea8f5478256a28d.zip chromium_src-2e610e9cd18750dc905a4f4feea8f5478256a28d.tar.gz chromium_src-2e610e9cd18750dc905a4f4feea8f5478256a28d.tar.bz2 |
Further tweaks to the passphrase UI to deal with passphrase entry.
BUG=62103
TEST=none
Review URL: http://codereview.chromium.org/6309002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71381 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync/sync_setup_flow.h')
-rw-r--r-- | chrome/browser/sync/sync_setup_flow.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/chrome/browser/sync/sync_setup_flow.h b/chrome/browser/sync/sync_setup_flow.h index f6c0233..b47c103 100644 --- a/chrome/browser/sync/sync_setup_flow.h +++ b/chrome/browser/sync/sync_setup_flow.h @@ -107,9 +107,12 @@ class SyncSetupFlow : public HtmlDialogUIDelegate { void OnUserConfigured(const SyncConfiguration& configuration); - void OnPassphraseEntry(const std::string& passphrase, - const std::string& mode); + // The 'passphrase' screen is used when the user is prompted to enter + // an existing passphrase. + void OnPassphraseEntry(const std::string& passphrase); + // The 'first passphrase' screen is for users migrating from a build + // without passwords, who are prompted to make a passphrase choice. void OnFirstPassphraseEntry(const std::string& option, const std::string& passphrase); |