Update to SQLitePersistentCookieStore schema v10, introduced in C66

This commit is contained in:
Garrett Robinson
2018-04-26 12:46:40 -07:00
parent 4d2631c304
commit 3f9f9c75f5
2 changed files with 2 additions and 2 deletions
Binary file not shown.
+2 -2
View File
@@ -405,8 +405,8 @@ void ChromeImporter::ImportCookies() {
const char query[] =
"SELECT creation_utc, host_key, name, value, encrypted_value, path, "
"expires_utc, secure, httponly, firstpartyonly, last_access_utc, "
"has_expires, persistent, priority FROM cookies";
"expires_utc, is_secure, is_httponly, firstpartyonly, last_access_utc, "
"has_expires, is_persistent, priority FROM cookies";
sql::Statement s(db.GetUniqueStatement(query));