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

Unified Diff: third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp

Issue 2737883002: Rename LayoutPart::widget to LayoutPart::frameViewBase (Closed)
Patch Set: Rename LayoutPart::widget to LayoutPart::frameViewBase Created 3 years, 9 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/core/layout/compositing/CompositedLayerMapping.cpp
diff --git a/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp b/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp
index 2b11d48670b148fad2330a31a67ba95c030d952d..3e727a9fa52cdbbc5555336d773a389605033895 100644
--- a/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp
+++ b/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp
@@ -151,7 +151,8 @@ static bool contentLayerSupportsDirectBackgroundComposition(
static WebLayer* platformLayerForPlugin(LayoutObject& layoutObject) {
if (!layoutObject.isEmbeddedObject())
return nullptr;
- FrameViewBase* frameViewBase = toLayoutEmbeddedObject(layoutObject).widget();
+ FrameViewBase* frameViewBase =
+ toLayoutEmbeddedObject(layoutObject).frameViewBase();
if (!frameViewBase || !frameViewBase->isPluginView())
return nullptr;
return toPluginView(frameViewBase)->platformLayer();

Powered by Google App Engine
This is Rietveld 408576698