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

Unified Diff: chrome/common/form_data.cc

Issue 11348273: [autofill] Fill in values on a successful run of interactive autocomplete. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: isherman@ review Created 8 years, 1 month 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: chrome/common/form_data.cc
diff --git a/chrome/common/form_data.cc b/chrome/common/form_data.cc
index d12c77c033a0a6e62346a6cd278d84d38537c529..a78d451421e5691509ca6860b299961ecd20ceff 100644
--- a/chrome/common/form_data.cc
+++ b/chrome/common/form_data.cc
@@ -30,3 +30,7 @@ bool FormData::operator==(const FormData& form) const {
user_submitted == form.user_submitted &&
fields == form.fields);
}
+
+bool FormData::operator!=(const FormData& form) const {
+ return !operator==(form);
+}

Powered by Google App Engine
This is Rietveld 408576698