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

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

Issue 2896563002: Update WebLocalFrameImpl with WebLocalFrameBase to break dependencies. (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
Index: third_party/WebKit/Source/web/FullscreenController.cpp
diff --git a/third_party/WebKit/Source/web/FullscreenController.cpp b/third_party/WebKit/Source/web/FullscreenController.cpp
index c0d5ec4b5b97e793509a5662d21cebcae86047e6..8142f04c3c8cf2ecf887f10773522da16e1ee1ec 100644
--- a/third_party/WebKit/Source/web/FullscreenController.cpp
+++ b/third_party/WebKit/Source/web/FullscreenController.cpp
@@ -36,19 +36,19 @@
#include "core/frame/FrameView.h"
#include "core/frame/LocalFrame.h"
#include "core/frame/PageScaleConstraintsSet.h"
+#include "core/frame/WebLocalFrameBase.h"
#include "core/html/HTMLVideoElement.h"
#include "core/layout/LayoutFullScreen.h"
#include "core/page/Page.h"
#include "public/platform/WebLayerTreeView.h"
#include "public/web/WebFrameClient.h"
-#include "web/WebLocalFrameImpl.h"
namespace blink {
namespace {
WebFrameClient& GetWebFrameClient(LocalFrame& frame) {
- WebLocalFrameImpl* web_frame = WebLocalFrameImpl::FromFrame(frame);
+ WebLocalFrameBase* web_frame = WebLocalFrameBase::FromFrame(frame);
DCHECK(web_frame);
DCHECK(web_frame->Client());
return *web_frame->Client();
« no previous file with comments | « third_party/WebKit/Source/web/ExternalPopupMenuTest.cpp ('k') | third_party/WebKit/Source/web/InspectorOverlayAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698