diff options
author | rsimha@chromium.org <rsimha@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-18 08:58:01 +0000 |
---|---|---|
committer | rsimha@chromium.org <rsimha@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-18 08:58:01 +0000 |
commit | 12bb3e11aac582a23034e3538a689e9a3a28da86 (patch) | |
tree | cdf611cb421039d437f245b091fe5455ff9a3c46 /chrome/browser/sync/profile_sync_service.cc | |
parent | d9245d3adab9e01f5b062f5ec2d3cd9d4e25359a (diff) | |
download | chromium_src-12bb3e11aac582a23034e3538a689e9a3a28da86.zip chromium_src-12bb3e11aac582a23034e3538a689e9a3a28da86.tar.gz chromium_src-12bb3e11aac582a23034e3538a689e9a3a28da86.tar.bz2 |
[Sync] Pave the way for fewer asynchronous calls and UI spin while setting a passphrase
As of today, when a user sets a passphrase, SetPassphrase() is invoked
from the UI thread, but the actual work is performed on the syncer
thread. This means that when the UI thread sets a decryption passphrase,
it doesn't actually know right away whether the passphrase was accepted
or not, resulting in the user having to see a spinner during this time.
This patch does the following:
- Changes the OnPassphraseRequired API to include a
sync_pb::EncryptedData parameter, that contains a copy of the
cryptographer's pending keys when the reason is REASON_DECRYPTION.
- Adds the cached_pending_keys_ data member to ProfileSyncService, so
that it can cache the cryptographer's pending keys when
OnPassphraseRequired is called.
- Adds a new API called CheckPassphraseAgainstCachedPendingKeys to
ProfileSyncService that can be called by the UI to first try to decrypt the
cached pending keys with the passphrase that was entered, and if this
fails, directly bubble up an incorrect passphrase dialog instead of
showing the user a spinner.
BUG=108718
TEST=try to enter an incorrect passphrase; try to enter an old
passphrase, sync_integration_tests
Review URL: http://codereview.chromium.org/9107027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118081 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync/profile_sync_service.cc')
-rw-r--r-- | chrome/browser/sync/profile_sync_service.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/sync/profile_sync_service.cc b/chrome/browser/sync/profile_sync_service.cc index c581c36..1a09529 100644 --- a/chrome/browser/sync/profile_sync_service.cc +++ b/chrome/browser/sync/profile_sync_service.cc @@ -763,7 +763,8 @@ void ProfileSyncService::OnClearServerDataSucceeded() { } void ProfileSyncService::OnPassphraseRequired( - sync_api::PassphraseRequiredReason reason) { + sync_api::PassphraseRequiredReason reason, + const sync_pb::EncryptedData& pending_keys) { DCHECK(backend_.get()); DCHECK(backend_->IsNigoriEnabled()); |