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

Unified Diff: components/password_manager/core/browser/password_store_change.h

Issue 139253004: Add the database field to require additional auth for autofilling passwords. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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/password_manager/core/browser/password_store_change.h
diff --git a/components/password_manager/core/browser/password_store_change.h b/components/password_manager/core/browser/password_store_change.h
index 8e330f13f4d2bdfd308b44e4e100aa0383dbfd38..84b854b4a65ecc8b16dccc490d4e3a607a129ad2 100644
--- a/components/password_manager/core/browser/password_store_change.h
+++ b/components/password_manager/core/browser/password_store_change.h
@@ -40,7 +40,9 @@ class PasswordStoreChange {
form().ssl_valid == other.form().ssl_valid &&
form().preferred == other.form().preferred &&
form().date_created == other.form().date_created &&
- form().blacklisted_by_user == other.form().blacklisted_by_user;
+ form().blacklisted_by_user == other.form().blacklisted_by_user &&
+ form().use_additional_authentication ==
+ other.form().use_additional_authentication;
}
private:

Powered by Google App Engine
This is Rietveld 408576698