| Index: third_party/WebKit/Source/web/PopupMenuImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/PopupMenuImpl.cpp b/third_party/WebKit/Source/web/PopupMenuImpl.cpp
|
| index 2b0cd8df2cd049bfa80c74726b59c3c9a446757e..6e837e7e2f7bb7d558c8b1dad7167b33f469fe09 100644
|
| --- a/third_party/WebKit/Source/web/PopupMenuImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/PopupMenuImpl.cpp
|
| @@ -20,13 +20,13 @@
|
| #include "core/html/HTMLSelectElement.h"
|
| #include "core/html/parser/HTMLParserIdioms.h"
|
| #include "core/layout/LayoutTheme.h"
|
| +#include "core/page/ChromeClient.h"
|
| #include "core/page/PagePopup.h"
|
| #include "platform/geometry/IntRect.h"
|
| #include "platform/text/PlatformLocale.h"
|
| #include "public/platform/Platform.h"
|
| #include "public/platform/WebMouseEvent.h"
|
| #include "public/web/WebColorChooser.h"
|
| -#include "web/ChromeClientImpl.h"
|
|
|
| namespace blink {
|
|
|
| @@ -236,12 +236,12 @@ class PopupMenuImpl::ItemIterationContext {
|
|
|
| // ----------------------------------------------------------------
|
|
|
| -PopupMenuImpl* PopupMenuImpl::Create(ChromeClientImpl* chrome_client,
|
| +PopupMenuImpl* PopupMenuImpl::Create(ChromeClient* chrome_client,
|
| HTMLSelectElement& owner_element) {
|
| return new PopupMenuImpl(chrome_client, owner_element);
|
| }
|
|
|
| -PopupMenuImpl::PopupMenuImpl(ChromeClientImpl* chrome_client,
|
| +PopupMenuImpl::PopupMenuImpl(ChromeClient* chrome_client,
|
| HTMLSelectElement& owner_element)
|
| : chrome_client_(chrome_client),
|
| owner_element_(owner_element),
|
|
|