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

Unified Diff: chrome/browser/password_manager/password_store_win_unittest.cc

Issue 644053003: [Password Manager] Add UMA stats for custom passphrase users. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments Created 6 years, 2 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/password_manager/password_store_win_unittest.cc
diff --git a/chrome/browser/password_manager/password_store_win_unittest.cc b/chrome/browser/password_manager/password_store_win_unittest.cc
index 77579e6569bb7721db66130e6660683eea8e42fc..c4a4033a8592345c98241e402c96a714c67bd7da 100644
--- a/chrome/browser/password_manager/password_store_win_unittest.cc
+++ b/chrome/browser/password_manager/password_store_win_unittest.cc
@@ -205,7 +205,7 @@ TEST_F(PasswordStoreWinTest, DISABLED_ConvertIE7Login) {
done.Wait();
store_ = CreatePasswordStore();
- EXPECT_TRUE(store_->Init(syncer::SyncableService::StartSyncFlare(), ""));
+ EXPECT_TRUE(store_->Init(syncer::SyncableService::StartSyncFlare()));
MockPasswordStoreConsumer consumer;
@@ -258,7 +258,7 @@ TEST_F(PasswordStoreWinTest, DISABLED_ConvertIE7Login) {
// Crashy. http://crbug.com/86558
TEST_F(PasswordStoreWinTest, DISABLED_OutstandingWDSQueries) {
store_ = CreatePasswordStore();
- EXPECT_TRUE(store_->Init(syncer::SyncableService::StartSyncFlare(), ""));
+ EXPECT_TRUE(store_->Init(syncer::SyncableService::StartSyncFlare()));
PasswordFormData form_data = {
PasswordForm::SCHEME_HTML,
@@ -301,7 +301,7 @@ TEST_F(PasswordStoreWinTest, DISABLED_MultipleWDSQueriesOnDifferentThreads) {
done.Wait();
store_ = CreatePasswordStore();
- EXPECT_TRUE(store_->Init(syncer::SyncableService::StartSyncFlare(), ""));
+ EXPECT_TRUE(store_->Init(syncer::SyncableService::StartSyncFlare()));
MockPasswordStoreConsumer password_consumer;
// Make sure we quit the MessageLoop even if the test fails.
@@ -363,7 +363,7 @@ TEST_F(PasswordStoreWinTest, DISABLED_MultipleWDSQueriesOnDifferentThreads) {
TEST_F(PasswordStoreWinTest, EmptyLogins) {
store_ = CreatePasswordStore();
- store_->Init(syncer::SyncableService::StartSyncFlare(), "");
+ store_->Init(syncer::SyncableService::StartSyncFlare());
PasswordFormData form_data = {
PasswordForm::SCHEME_HTML,
@@ -397,7 +397,7 @@ TEST_F(PasswordStoreWinTest, EmptyLogins) {
TEST_F(PasswordStoreWinTest, EmptyBlacklistLogins) {
store_ = CreatePasswordStore();
- store_->Init(syncer::SyncableService::StartSyncFlare(), "");
+ store_->Init(syncer::SyncableService::StartSyncFlare());
MockPasswordStoreConsumer consumer;
@@ -418,7 +418,7 @@ TEST_F(PasswordStoreWinTest, EmptyBlacklistLogins) {
TEST_F(PasswordStoreWinTest, EmptyAutofillableLogins) {
store_ = CreatePasswordStore();
- store_->Init(syncer::SyncableService::StartSyncFlare(), "");
+ store_->Init(syncer::SyncableService::StartSyncFlare());
MockPasswordStoreConsumer consumer;

Powered by Google App Engine
This is Rietveld 408576698