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

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

Issue 2127533003: Remove PasswordForm::ssl_valid (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adjust //ios Created 4 years, 5 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_x_unittest.cc
diff --git a/chrome/browser/password_manager/password_store_x_unittest.cc b/chrome/browser/password_manager/password_store_x_unittest.cc
index 2f26468d785bca621e5edb77d938d23879672a17..56382b82a435d97df224e162eeaca1de87e7c146 100644
--- a/chrome/browser/password_manager/password_store_x_unittest.cc
+++ b/chrome/browser/password_manager/password_store_x_unittest.cc
@@ -277,7 +277,6 @@ void InitExpectedForms(bool autofillable,
autofillable ? L"username_value" : nullptr,
autofillable ? L"password_value" : nullptr,
autofillable,
- false,
static_cast<double>(i + 1)};
forms->push_back(CreatePasswordFormFromDataForTesting(data));
}
@@ -412,12 +411,17 @@ TEST_P(PasswordStoreXTest, Notifications) {
store->Init(syncer::SyncableService::StartSyncFlare());
password_manager::PasswordFormData form_data = {
- PasswordForm::SCHEME_HTML, "http://bar.example.com",
- "http://bar.example.com/origin", "http://bar.example.com/action",
- L"submit_element", L"username_element",
- L"password_element", L"username_value",
- L"password_value", true,
- false, 1};
+ PasswordForm::SCHEME_HTML,
+ "http://bar.example.com",
+ "http://bar.example.com/origin",
+ "http://bar.example.com/action",
+ L"submit_element",
+ L"username_element",
+ L"password_element",
+ L"username_value",
+ L"password_value",
+ true,
+ 1};
std::unique_ptr<PasswordForm> form =
CreatePasswordFormFromDataForTesting(form_data);

Powered by Google App Engine
This is Rietveld 408576698