Chromium Code Reviews| Index: chrome/common/form_data.h |
| diff --git a/chrome/common/form_data.h b/chrome/common/form_data.h |
| index 018c9f91584baddf2f0a579aed4df838a8336d0e..d961425584ca0c1b587122aba121aaf4b5f320cc 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 URL contatining the form. |
|
Ilya Sherman
2013/01/15 06:31:52
nit: "URL" -> "frame".
Raman Kakilate
2013/01/15 23:02:33
Done.
|
| + content::SSLStatus ssl_status; |
| FormData(); |
| FormData(const FormData& data); |