Commit 7178b812 authored by mkwst@chromium.org's avatar mkwst@chromium.org

AutofillAgent cleanup: Removing two unused variables.

Review URL: https://codereview.chromium.org/382213003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@283442 0039d316-1c4b-4281-b951-d872f2087c98
parent 0c151f0c
...@@ -132,7 +132,6 @@ AutofillAgent::AutofillAgent(content::RenderView* render_view, ...@@ -132,7 +132,6 @@ AutofillAgent::AutofillAgent(content::RenderView* render_view,
was_query_node_autofilled_(false), was_query_node_autofilled_(false),
has_shown_autofill_popup_for_current_edit_(false), has_shown_autofill_popup_for_current_edit_(false),
did_set_node_text_(false), did_set_node_text_(false),
has_new_forms_for_browser_(false),
ignore_text_changes_(false), ignore_text_changes_(false),
is_popup_possibly_visible_(false), is_popup_possibly_visible_(false),
main_frame_processed_(false), main_frame_processed_(false),
......
...@@ -201,9 +201,6 @@ class AutofillAgent : public content::RenderViewObserver, ...@@ -201,9 +201,6 @@ class AutofillAgent : public content::RenderViewObserver,
// The form element currently requesting an interactive autocomplete. // The form element currently requesting an interactive autocomplete.
blink::WebFormElement in_flight_request_form_; blink::WebFormElement in_flight_request_form_;
// All the form elements seen in the top frame.
std::vector<blink::WebFormElement> form_elements_;
// Pointer to the WebView. Used to access page scale factor. // Pointer to the WebView. Used to access page scale factor.
blink::WebView* web_view_; blink::WebView* web_view_;
...@@ -220,10 +217,6 @@ class AutofillAgent : public content::RenderViewObserver, ...@@ -220,10 +217,6 @@ class AutofillAgent : public content::RenderViewObserver,
// If true we just set the node text so we shouldn't show the popup. // If true we just set the node text so we shouldn't show the popup.
bool did_set_node_text_; bool did_set_node_text_;
// Whether or not new forms/fields have been dynamically added
// since the last loaded forms were sent to the browser process.
bool has_new_forms_for_browser_;
// Whether or not to ignore text changes. Useful for when we're committing // Whether or not to ignore text changes. Useful for when we're committing
// a composition when we are defocusing the WebView and we don't want to // a composition when we are defocusing the WebView and we don't want to
// trigger an autofill popup to show. // trigger an autofill popup to show.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment