Index: components/autofill/content/renderer/autofill_agent.cc |
diff --git a/components/autofill/content/renderer/autofill_agent.cc b/components/autofill/content/renderer/autofill_agent.cc |
index 979976f72c14ee71c8dfd95e7bf5c195d680aedb..85f4fad689dba9c397ecd85020a124a18a65f86d 100644 |
--- a/components/autofill/content/renderer/autofill_agent.cc |
+++ b/components/autofill/content/renderer/autofill_agent.cc |
@@ -34,12 +34,12 @@ |
#include "third_party/WebKit/public/platform/WebURLRequest.h" |
#include "third_party/WebKit/public/web/WebDataSource.h" |
#include "third_party/WebKit/public/web/WebDocument.h" |
+#include "third_party/WebKit/public/web/WebElementCollection.h" |
#include "third_party/WebKit/public/web/WebFormControlElement.h" |
#include "third_party/WebKit/public/web/WebFormElement.h" |
#include "third_party/WebKit/public/web/WebFrame.h" |
#include "third_party/WebKit/public/web/WebInputEvent.h" |
#include "third_party/WebKit/public/web/WebNode.h" |
-#include "third_party/WebKit/public/web/WebNodeCollection.h" |
#include "third_party/WebKit/public/web/WebOptionElement.h" |
#include "third_party/WebKit/public/web/WebView.h" |
#include "ui/base/l10n/l10n_util.h" |
@@ -52,7 +52,7 @@ using blink::WebFrame; |
using blink::WebInputElement; |
using blink::WebKeyboardEvent; |
using blink::WebNode; |
-using blink::WebNodeCollection; |
+using blink::WebElementCollection; |
using blink::WebOptionElement; |
using blink::WebString; |
@@ -66,7 +66,7 @@ void GetDataListSuggestions(const blink::WebInputElement& element, |
bool ignore_current_value, |
std::vector<base::string16>* values, |
std::vector<base::string16>* labels) { |
- WebNodeCollection options = element.dataListOptions(); |
+ WebElementCollection options = element.dataListOptions(); |
if (options.isNull()) |
return; |