Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1269)

Unified Diff: third_party/WebKit/Source/web/PopupMenuImpl.cpp

Issue 2884803004: Removed dependency of PopupMenuImpl on ChromeClientImpl (Closed)
Patch Set: Rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/web/PopupMenuImpl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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),
« no previous file with comments | « third_party/WebKit/Source/web/PopupMenuImpl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698