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

Unified Diff: components/autofill/core/common/password_form.cc

Issue 316243002: Add date_synced to PasswordForm. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: +comment Created 6 years, 6 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/autofill/core/common/password_form.cc
diff --git a/components/autofill/core/common/password_form.cc b/components/autofill/core/common/password_form.cc
index e7ae4f564e9a0c089a42f382bb83c3bd39604bc3..29b34ec11db005fa47545c21297d138c83f987fb 100644
--- a/components/autofill/core/common/password_form.cc
+++ b/components/autofill/core/common/password_form.cc
@@ -44,6 +44,7 @@ bool PasswordForm::operator==(const PasswordForm& form) const {
ssl_valid == form.ssl_valid &&
preferred == form.preferred &&
date_created == form.date_created &&
+ date_synced == form.date_synced &&
blacklisted_by_user == form.blacklisted_by_user &&
type == form.type &&
times_used == form.times_used &&
@@ -74,6 +75,7 @@ std::ostream& operator<<(std::ostream& os, const PasswordForm& form) {
<< " preferred: " << form.preferred
<< " ssl_valid: " << form.ssl_valid
<< " date_created: " << form.date_created.ToDoubleT()
+ << " date_synced: " << form.date_synced.ToDoubleT()
<< " type: " << form.type
<< " times_used: " << form.times_used
<< " use additional authentication: "
« no previous file with comments | « components/autofill/core/common/password_form.h ('k') | components/password_manager/core/browser/login_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698