| Index: Source/core/html/HTMLDataListElement.cpp
|
| diff --git a/Source/core/html/HTMLDataListElement.cpp b/Source/core/html/HTMLDataListElement.cpp
|
| index 2ae46d3214e3ad11516a180b905efa081f329809..7c6903ca7ebe6a6592433f434ec00b38c26f20a2 100644
|
| --- a/Source/core/html/HTMLDataListElement.cpp
|
| +++ b/Source/core/html/HTMLDataListElement.cpp
|
| @@ -36,6 +36,7 @@
|
| #include "core/dom/IdTargetObserverRegistry.h"
|
| #include "core/dom/NodeListsNodeData.h"
|
| #include "core/frame/UseCounter.h"
|
| +#include "core/html/HTMLDataListOptionsCollection.h"
|
|
|
| namespace blink {
|
|
|
| @@ -51,9 +52,9 @@ PassRefPtrWillBeRawPtr<HTMLDataListElement> HTMLDataListElement::create(Document
|
| return adoptRefWillBeNoop(new HTMLDataListElement(document));
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<HTMLCollection> HTMLDataListElement::options()
|
| +PassRefPtrWillBeRawPtr<HTMLDataListOptionsCollection> HTMLDataListElement::options()
|
| {
|
| - return ensureCachedCollection<HTMLCollection>(DataListOptions);
|
| + return ensureCachedCollection<HTMLDataListOptionsCollection>(DataListOptions);
|
| }
|
|
|
| void HTMLDataListElement::childrenChanged(const ChildrenChange& change)
|
|
|