Index: components/autofill/content/renderer/form_cache.h |
diff --git a/components/autofill/content/renderer/form_cache.h b/components/autofill/content/renderer/form_cache.h |
index 4afb3a66f9e605e06a42b71f684af8d3dd5d0d38..f2f7775c7121994061dc36c2ddf4370b63d3a158 100644 |
--- a/components/autofill/content/renderer/form_cache.h |
+++ b/components/autofill/content/renderer/form_cache.h |
@@ -17,8 +17,8 @@ |
namespace blink { |
class WebFormControlElement; |
-class WebFrame; |
class WebInputElement; |
+class WebLocalFrame; |
class WebSelectElement; |
} |
@@ -29,7 +29,7 @@ struct FormDataPredictions; |
// Manages the forms in a single RenderFrame. |
class FormCache { |
public: |
- explicit FormCache(const blink::WebFrame& frame); |
+ explicit FormCache(const blink::WebLocalFrame& frame); |
~FormCache(); |
// Scans the DOM in |frame_| extracting and storing forms that have not been |
@@ -62,7 +62,7 @@ class FormCache { |
const std::vector<blink::WebFormControlElement>& control_elements); |
// The frame this FormCache is associated with. |
- const blink::WebFrame& frame_; |
+ const blink::WebLocalFrame& frame_; |
// The cached forms. Used to prevent re-extraction of forms. |
std::set<FormData> parsed_forms_; |