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

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: Addressed review comments. 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
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.
+ content::SSLStatus ssl_status;
FormData();
FormData(const FormData& data);

Powered by Google App Engine
This is Rietveld 408576698