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

Unified Diff: components/autofill/content/common/autofill_messages.h

Issue 242613006: [Autofill] Enable Autofill for dynamically created forms. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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: components/autofill/content/common/autofill_messages.h
diff --git a/components/autofill/content/common/autofill_messages.h b/components/autofill/content/common/autofill_messages.h
index c734cd25de8e4d9d3ae1cf4a57c14ef86503a0ec..afb088069d3cfd682f618d37bf58e552f808f7bf 100644
--- a/components/autofill/content/common/autofill_messages.h
+++ b/components/autofill/content/common/autofill_messages.h
@@ -14,7 +14,6 @@
#include "components/autofill/core/common/form_data_predictions.h"
#include "components/autofill/core/common/form_field_data.h"
#include "components/autofill/core/common/form_field_data_predictions.h"
-#include "components/autofill/core/common/forms_seen_state.h"
#include "components/autofill/core/common/password_form.h"
#include "components/autofill/core/common/password_form_fill_data.h"
#include "components/autofill/core/common/web_element_descriptor.h"
@@ -28,8 +27,6 @@
#define IPC_MESSAGE_START AutofillMsgStart
-IPC_ENUM_TRAITS_MAX_VALUE(autofill::FormsSeenState,
- autofill::FORMS_SEEN_STATE_NUM_STATES - 1)
IPC_ENUM_TRAITS_MAX_VALUE(base::i18n::TextDirection,
base::i18n::TEXT_DIRECTION_NUM_DIRECTIONS - 1)
@@ -171,10 +168,9 @@ IPC_MESSAGE_ROUTED1(AutofillMsg_AccountCreationFormsDetected,
// Notification that forms have been seen that are candidates for
// filling/submitting by the AutofillManager.
-IPC_MESSAGE_ROUTED3(AutofillHostMsg_FormsSeen,
+IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormsSeen,
std::vector<autofill::FormData> /* forms */,
- base::TimeTicks /* timestamp */,
- autofill::FormsSeenState /* state */)
+ base::TimeTicks /* timestamp */)
// Notification that password forms have been seen that are candidates for
// filling/submitting by the password manager.

Powered by Google App Engine
This is Rietveld 408576698