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

Unified Diff: components/test/data/password_manager/login_db_v1.sql

Issue 2291123008: Test that LoginDatabase preserves PasswordForm::Scheme through migration (Closed)
Patch Set: Add comment Created 4 years, 3 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: components/test/data/password_manager/login_db_v1.sql
diff --git a/components/test/data/password_manager/login_db_v1.sql b/components/test/data/password_manager/login_db_v1.sql
index 81d8b8c818fd325c589f8cbdddd5cf3c741e6abc..576ef325ceecf474e3353a58b350e0a346ac9425 100644
--- a/components/test/data/password_manager/login_db_v1.sql
+++ b/components/test/data/password_manager/login_db_v1.sql
@@ -48,6 +48,21 @@ X'', /* password_value */
0, /* blacklisted_by_user */
0 /* scheme */
);
+INSERT INTO "logins" VALUES(
+'http://example.com', /* origin_url */
+'http://example.com/landing', /* action_url */
+'', /* username_element */
+'user', /* username_value */
+'', /* password_element */
+X'', /* password_value */
+'', /* submit_element */
+'http://example.com', /* signon_realm */
+1, /* ssl_valid */
+1, /* preferred */
+1402950000, /* date_created */
+0, /* blacklisted_by_user */
+1 /* scheme */
+);
CREATE INDEX logins_signon ON logins (signon_realm);
COMMIT;
« no previous file with comments | « components/password_manager/core/browser/login_database_win.cc ('k') | components/test/data/password_manager/login_db_v10.sql » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698