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

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

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 | « no previous file | third_party/WebKit/Source/web/PopupMenuImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/PopupMenuImpl.h
diff --git a/third_party/WebKit/Source/web/PopupMenuImpl.h b/third_party/WebKit/Source/web/PopupMenuImpl.h
index 29a9d9fb602695261c72a422aac93f9029c7efaa..4ddebf431015544e9f276d5457ae27ef90ba7932 100644
--- a/third_party/WebKit/Source/web/PopupMenuImpl.h
+++ b/third_party/WebKit/Source/web/PopupMenuImpl.h
@@ -10,7 +10,7 @@
namespace blink {
-class ChromeClientImpl;
+class ChromeClient;
class PagePopup;
class HTMLElement;
class HTMLHRElement;
@@ -20,7 +20,7 @@ class HTMLSelectElement;
class PopupMenuImpl final : public PopupMenu, public PagePopupClient {
public:
- static PopupMenuImpl* Create(ChromeClientImpl*, HTMLSelectElement&);
+ static PopupMenuImpl* Create(ChromeClient*, HTMLSelectElement&);
~PopupMenuImpl() override;
DECLARE_VIRTUAL_TRACE();
@@ -29,7 +29,7 @@ class PopupMenuImpl final : public PopupMenu, public PagePopupClient {
void Dispose();
private:
- PopupMenuImpl(ChromeClientImpl*, HTMLSelectElement&);
+ PopupMenuImpl(ChromeClient*, HTMLSelectElement&);
class ItemIterationContext;
void AddOption(ItemIterationContext&, HTMLOptionElement&);
@@ -54,7 +54,7 @@ class PopupMenuImpl final : public PopupMenu, public PagePopupClient {
Locale& GetLocale() override;
void DidClosePopup() override;
- Member<ChromeClientImpl> chrome_client_;
+ Member<ChromeClient> chrome_client_;
Member<HTMLSelectElement> owner_element_;
PagePopup* popup_;
bool needs_update_;
« no previous file with comments | « no previous file | third_party/WebKit/Source/web/PopupMenuImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698