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

Unified Diff: chrome/common/form_data.h

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/chrome_browser.gypi ('k') | chrome/common/form_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/form_data.h
diff --git a/chrome/common/form_data.h b/chrome/common/form_data.h
index 018c9f91584baddf2f0a579aed4df838a8336d0e..40d94347c768c3358646604acb29e2822f65dd2b 100644
--- a/chrome/common/form_data.h
+++ b/chrome/common/form_data.h
@@ -9,10 +9,19 @@
#include "base/string16.h"
#include "chrome/common/form_field_data.h"
+#include "content/public/common/ssl_status.h"
#include "googleurl/src/gurl.h"
// Holds information about a form to be filled and/or submitted.
struct FormData {
+ FormData();
+ FormData(const FormData& data);
+ ~FormData();
+
+ // Used by FormStructureTest.
+ bool operator==(const FormData& form) const;
+ bool operator!=(const FormData& form) const;
+
// The name of the form.
string16 name;
// GET or POST.
@@ -25,14 +34,8 @@ struct FormData {
bool user_submitted;
// A vector of all the input fields in the form.
std::vector<FormFieldData> fields;
-
- FormData();
- FormData(const FormData& data);
- ~FormData();
-
- // Used by FormStructureTest.
- bool operator==(const FormData& form) const;
- bool operator!=(const FormData& form) const;
+ // SSL status of the frame contatining the form.
+ content::SSLStatus ssl_status;
};
#endif // CHROME_COMMON_FORM_DATA_H__
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/common/form_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698