Index: chrome/common/form_data.h |
diff --git a/chrome/common/form_data.h b/chrome/common/form_data.h |
index 018c9f91584baddf2f0a579aed4df838a8336d0e..014aa461f74d337d5433bc8d3b3470080eacd02a 100644 |
--- a/chrome/common/form_data.h |
+++ b/chrome/common/form_data.h |
@@ -9,6 +9,7 @@ |
#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. |
@@ -25,6 +26,8 @@ struct FormData { |
bool user_submitted; |
// A vector of all the input fields in the form. |
std::vector<FormFieldData> fields; |
+ // SSL status of the frame contatining the form. |
+ content::SSLStatus ssl_status; |
FormData(); |
sky
2013/01/18 16:56:16
methods before fields.
Raman Kakilate
2013/01/18 17:06:47
Done.
|
FormData(const FormData& data); |