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

Side by Side Diff: components/test/data/password_manager/login_db_v17.sql

Issue 1734193003: CREDENTIAL: Disable auto sign-in by default for existing credentials. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ugh. Created 4 years, 9 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 unified diff | Download patch
« no previous file with comments | « components/password_manager/core/browser/login_database.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 PRAGMA foreign_keys=OFF; 1 PRAGMA foreign_keys=OFF;
2 BEGIN TRANSACTION; 2 BEGIN TRANSACTION;
3 CREATE TABLE meta(key LONGVARCHAR NOT NULL UNIQUE PRIMARY KEY, value LONGVARCHAR ); 3 CREATE TABLE meta(key LONGVARCHAR NOT NULL UNIQUE PRIMARY KEY, value LONGVARCHAR );
4 INSERT INTO "meta" VALUES('last_compatible_version','14'); 4 INSERT INTO "meta" VALUES('last_compatible_version','14');
5 INSERT INTO "meta" VALUES('version','15'); 5 INSERT INTO "meta" VALUES('version','15');
6 CREATE TABLE logins ( 6 CREATE TABLE logins (
7 origin_url VARCHAR NOT NULL, 7 origin_url VARCHAR NOT NULL,
8 action_url VARCHAR, 8 action_url VARCHAR,
9 username_element VARCHAR, 9 username_element VARCHAR,
10 username_value VARCHAR, 10 username_value VARCHAR,
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 0, /* blacklisted_by_user */ 43 0, /* blacklisted_by_user */
44 0, /* scheme */ 44 0, /* scheme */
45 0, /* password_type */ 45 0, /* password_type */
46 X'00000000', /* possible_usernames */ 46 X'00000000', /* possible_usernames */
47 1, /* times_used */ 47 1, /* times_used */
48 X'18000000020000000000000000000000000000000000000000000000', /* form_data */ 48 X'18000000020000000000000000000000000000000000000000000000', /* form_data */
49 0, /* date_synced */ 49 0, /* date_synced */
50 '', /* display_name */ 50 '', /* display_name */
51 '', /* icon_url */ 51 '', /* icon_url */
52 '', /* federation_url */ 52 '', /* federation_url */
53 0, /* skip_zero_click */ 53 1, /* skip_zero_click */
54 0 /* generation_upload_status */ 54 0 /* generation_upload_status */
55 ); 55 );
56 INSERT INTO "logins" VALUES( 56 INSERT INTO "logins" VALUES(
57 'https://accounts.google.com/ServiceLogin', /* origin_url */ 57 'https://accounts.google.com/ServiceLogin', /* origin_url */
58 'https://accounts.google.com/ServiceLoginAuth', /* action_url */ 58 'https://accounts.google.com/ServiceLoginAuth', /* action_url */
59 'Email', /* username_element */ 59 'Email', /* username_element */
60 'theerikchen2', /* username_value */ 60 'theerikchen2', /* username_value */
61 'Passwd', /* password_element */ 61 'Passwd', /* password_element */
62 X'', /* password_value */ 62 X'', /* password_value */
63 'non-empty', /* submit_element */ 63 'non-empty', /* submit_element */
64 'https://accounts.google.com/', /* signon_realm */ 64 'https://accounts.google.com/', /* signon_realm */
65 1, /* ssl_valid */ 65 1, /* ssl_valid */
66 1, /* preferred */ 66 1, /* preferred */
67 13047423600000000, /* date_created */ 67 13047423600000000, /* date_created */
68 0, /* blacklisted_by_user */ 68 0, /* blacklisted_by_user */
69 0, /* scheme */ 69 0, /* scheme */
70 0, /* password_type */ 70 0, /* password_type */
71 X'00000000', /* possible_usernames */ 71 X'00000000', /* possible_usernames */
72 1, /* times_used */ 72 1, /* times_used */
73 X'18000000020000000000000000000000000000000000000000000000', /* form_data */ 73 X'18000000020000000000000000000000000000000000000000000000', /* form_data */
74 0, /* date_synced */ 74 0, /* date_synced */
75 '', /* display_name */ 75 '', /* display_name */
76 'https://www.google.com/icon', /* icon_url */ 76 'https://www.google.com/icon', /* icon_url */
77 '', /* federation_url */ 77 '', /* federation_url */
78 0, /* skip_zero_click */ 78 1, /* skip_zero_click */
79 0 /* generation_upload_status */ 79 0 /* generation_upload_status */
80 ); 80 );
81 CREATE INDEX logins_signon ON logins (signon_realm); 81 CREATE INDEX logins_signon ON logins (signon_realm);
82 CREATE TABLE stats ( 82 CREATE TABLE stats (
83 origin_domain VARCHAR NOT NULL, 83 origin_domain VARCHAR NOT NULL,
84 username_value VARCHAR, 84 username_value VARCHAR,
85 dismissal_count INTEGER, 85 dismissal_count INTEGER,
86 update_time INTEGER NOT NULL, 86 update_time INTEGER NOT NULL,
87 UNIQUE(origin_domain, username_value)); 87 UNIQUE(origin_domain, username_value));
88 CREATE INDEX stats_origin ON stats(origin_domain); 88 CREATE INDEX stats_origin ON stats(origin_domain);
89 COMMIT; 89 COMMIT;
OLDNEW
« no previous file with comments | « components/password_manager/core/browser/login_database.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698