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

Unified Diff: chrome/browser/sync/profile_sync_service.h

Issue 6309002: Further tweaks to the passphrase UI to deal with passphrase entry.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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 | « chrome/app/generated_resources.grd ('k') | chrome/browser/sync/profile_sync_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/profile_sync_service.h
===================================================================
--- chrome/browser/sync/profile_sync_service.h (revision 71271)
+++ chrome/browser/sync/profile_sync_service.h (working copy)
@@ -256,6 +256,14 @@
return is_auth_in_progress_;
}
+ bool tried_creating_explicit_passphrase() const {
+ return tried_creating_explicit_passphrase_;
+ }
+
+ bool tried_setting_explicit_passphrase() const {
+ return tried_setting_explicit_passphrase_;
+ }
+
bool observed_passphrase_required() const {
return observed_passphrase_required_;
}
@@ -364,7 +372,12 @@
// setting a passphrase as opposed to implicitly (from the users' perspective)
// using their Google Account password. An implicit SetPassphrase will *not*
// *not* override an explicit passphrase set previously.
- virtual void SetPassphrase(const std::string& passphrase, bool is_explicit);
+ // |is_creation| is true if the call is in response to the user setting
+ // up a new passphrase, and false if it's being set in response to a prompt
+ // for an existing passphrase.
+ virtual void SetPassphrase(const std::string& passphrase,
+ bool is_explicit,
+ bool is_creation);
// Returns whether processing changes is allowed. Check this before doing
// any model-modifying operations.
@@ -417,6 +430,14 @@
// Cache of the last name the client attempted to authenticate.
std::string last_attempted_user_email_;
+ // Whether the user has tried creating an explicit passphrase on this
+ // machine.
+ bool tried_creating_explicit_passphrase_;
+
+ // Whether the user has tried setting an explicit passphrase on this
+ // machine.
+ bool tried_setting_explicit_passphrase_;
+
// Whether we have seen a SYNC_PASSPHRASE_REQUIRED since initializing the
// backend, telling us that it is safe to send a passphrase down ASAP.
bool observed_passphrase_required_;
@@ -527,7 +548,8 @@
struct CachedPassphrase {
std::string value;
bool is_explicit;
- CachedPassphrase() : is_explicit(false) {}
+ bool is_creation;
+ CachedPassphrase() : is_explicit(false), is_creation(false) {}
};
CachedPassphrase cached_passphrase_;
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/sync/profile_sync_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698