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

Unified Diff: chrome/test/live_sync/passwords_helper.cc

Issue 7792093: Moved the handling of the initial passphrase into SyncSetupFlow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reverted unnecessary change to domui code. Created 9 years, 4 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
Index: chrome/test/live_sync/passwords_helper.cc
diff --git a/chrome/test/live_sync/passwords_helper.cc b/chrome/test/live_sync/passwords_helper.cc
index 7042d7e8e75cb71062a8ba8432bdc006a373469d..d12d80d1a06f78545ca7b1e7ff6c3f0d91fd5db8 100644
--- a/chrome/test/live_sync/passwords_helper.cc
+++ b/chrome/test/live_sync/passwords_helper.cc
@@ -104,9 +104,9 @@ void RemoveLogins(PasswordStore* store) {
}
}
-void SetPassphrase(int index, const std::string& passphrase, bool is_creation) {
+void SetPassphrase(int index, const std::string& passphrase) {
test()->GetProfile(index)->GetProfileSyncService("")->SetPassphrase(
- passphrase, true, is_creation);
+ passphrase, true);
}
PasswordStore* GetPasswordStore(int index) {

Powered by Google App Engine
This is Rietveld 408576698