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

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

Issue 2877363002: Move more classes over to use WebLocalFrameBase instead of WebLocalFrameImpl. (Closed)
Patch Set: 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
Index: third_party/WebKit/Source/web/ExternalPopupMenu.cpp
diff --git a/third_party/WebKit/Source/web/ExternalPopupMenu.cpp b/third_party/WebKit/Source/web/ExternalPopupMenu.cpp
index 0cdf1ca76f786408785e90382822b3f77e674e15..17eff779a4e7823fb0e3c302b7c7d839272836fe 100644
--- a/third_party/WebKit/Source/web/ExternalPopupMenu.cpp
+++ b/third_party/WebKit/Source/web/ExternalPopupMenu.cpp
@@ -35,6 +35,7 @@
#include "core/exported/WebViewBase.h"
#include "core/frame/FrameView.h"
#include "core/frame/LocalFrame.h"
+#include "core/frame/WebLocalFrameBase.h"
#include "core/html/HTMLOptionElement.h"
#include "core/html/HTMLSelectElement.h"
#include "core/layout/LayoutBox.h"
@@ -52,7 +53,6 @@
#include "public/web/WebMenuItemInfo.h"
#include "public/web/WebPopupMenuInfo.h"
#include "public/web/WebView.h"
-#include "web/WebLocalFrameImpl.h"
namespace blink {
@@ -88,8 +88,8 @@ bool ExternalPopupMenu::ShowInternal() {
GetPopupMenuInfo(info, *owner_element_);
if (info.items.empty())
return false;
- WebLocalFrameImpl* webframe =
- WebLocalFrameImpl::FromFrame(local_frame_.Get());
+ WebLocalFrameBase* webframe =
+ WebLocalFrameBase::FromFrame(local_frame_.Get());
web_external_popup_menu_ =
webframe->Client()->CreateExternalPopupMenu(info, this);
if (web_external_popup_menu_) {
« no previous file with comments | « third_party/WebKit/Source/web/ColorChooserUIController.cpp ('k') | third_party/WebKit/Source/web/IndexedDBClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698