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

Unified Diff: chrome/browser/sync/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: Painful merge after phajdan's last-minute huge bulk file move. 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/browser/sync/test/live_sync/passwords_helper.cc
diff --git a/chrome/browser/sync/test/live_sync/passwords_helper.cc b/chrome/browser/sync/test/live_sync/passwords_helper.cc
index b888e25c36830dc3cfef8897f27aa5494fec84fe..9484c39a888d872fb2a0cc3c5800363a5f573b0a 100644
--- a/chrome/browser/sync/test/live_sync/passwords_helper.cc
+++ b/chrome/browser/sync/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