| 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 7c798e24b2f8ed91695544f366d613df323f2ae2..8f53a6fcd60d9762822f7045e54f3969dd172deb 100644
|
| --- a/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp
|
| @@ -33,6 +33,7 @@
|
| #include "core/frame/RemoteFrame.h"
|
| #include "core/frame/Settings.h"
|
| #include "core/html/HTMLCanvasElement.h"
|
| +#include "core/html/HTMLFrameletElement.h"
|
| #include "core/html/HTMLIFrameElement.h"
|
| #include "core/html/HTMLMediaElement.h"
|
| #include "core/html/HTMLVideoElement.h"
|
| @@ -533,6 +534,9 @@ bool CompositedLayerMapping::updateGraphicsLayerConfiguration()
|
|
|
| if (WebLayer* layer = platformLayerForPlugin(layoutObject)) {
|
| m_graphicsLayer->setContentsToPlatformLayer(layer);
|
| + } else if (layoutObject->isLayoutFramelet()) {
|
| + HTMLFrameletElement* framelet = (HTMLFrameletElement*)layoutObject->node();
|
| + m_graphicsLayer->setContentsToPlatformLayer(framelet->webLayer());
|
| } else if (layoutObject->node() && layoutObject->node()->isFrameOwnerElement() && toHTMLFrameOwnerElement(layoutObject->node())->contentFrame()) {
|
| Frame* frame = toHTMLFrameOwnerElement(layoutObject->node())->contentFrame();
|
| if (frame->isRemoteFrame()) {
|
|
|