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

Unified Diff: chrome/common/form_data.cc

Issue 11539003: Pop up requestAutocomplete UI when autofill server hints chrome client that it is in a multipage au… (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Resolve with AutofillDialogController refactoring. Created 7 years, 11 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
« no previous file with comments | « chrome/common/form_data.h ('k') | chrome/renderer/autofill/autofill_agent.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/form_data.cc
diff --git a/chrome/common/form_data.cc b/chrome/common/form_data.cc
index a78d451421e5691509ca6860b299961ecd20ceff..d857a14bb3ea2136a1445b6c30f52e3654f6b53e 100644
--- a/chrome/common/form_data.cc
+++ b/chrome/common/form_data.cc
@@ -16,7 +16,8 @@ FormData::FormData(const FormData& data)
origin(data.origin),
action(data.action),
user_submitted(data.user_submitted),
- fields(data.fields) {
+ fields(data.fields),
+ ssl_status(data.ssl_status) {
}
FormData::~FormData() {
@@ -28,7 +29,8 @@ bool FormData::operator==(const FormData& form) const {
origin == form.origin &&
action == form.action &&
user_submitted == form.user_submitted &&
- fields == form.fields);
+ fields == form.fields &&
+ ssl_status.Equals(form.ssl_status));
}
bool FormData::operator!=(const FormData& form) const {
« no previous file with comments | « chrome/common/form_data.h ('k') | chrome/renderer/autofill/autofill_agent.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698