| Index: third_party/WebKit/Source/core/html/forms/TextFieldInputType.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/forms/TextFieldInputType.cpp b/third_party/WebKit/Source/core/html/forms/TextFieldInputType.cpp
|
| index 5bd3ebda7b6b460c7a8f2d8d800e762a1d21a51e..1893fdf34a1e6f2d69bbb139de7e8c9d4289462c 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/TextFieldInputType.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/TextFieldInputType.cpp
|
| @@ -40,7 +40,6 @@
|
| #include "core/events/BeforeTextInsertedEvent.h"
|
| #include "core/events/KeyboardEvent.h"
|
| #include "core/events/TextEvent.h"
|
| -#include "core/frame/FrameHost.h"
|
| #include "core/frame/LocalFrame.h"
|
| #include "core/html/FormData.h"
|
| #include "core/html/HTMLInputElement.h"
|
| @@ -50,6 +49,7 @@
|
| #include "core/layout/LayoutTextControlSingleLine.h"
|
| #include "core/layout/LayoutTheme.h"
|
| #include "core/page/ChromeClient.h"
|
| +#include "core/page/Page.h"
|
| #include "core/paint/PaintLayer.h"
|
| #include "platform/EventDispatchForbiddenScope.h"
|
| #include "wtf/text/WTFString.h"
|
| @@ -86,7 +86,7 @@ class DataListIndicatorElement final : public HTMLDivElement {
|
| return;
|
| HTMLInputElement* host = hostInput();
|
| if (host && !host->isDisabledOrReadOnly()) {
|
| - document().frameHost()->chromeClient().openTextDataListChooser(*host);
|
| + document().page()->chromeClient().openTextDataListChooser(*host);
|
| event->setDefaultHandled();
|
| }
|
| }
|
|
|