Index: Source/web/WebFrameImpl.cpp |
diff --git a/Source/web/WebFrameImpl.cpp b/Source/web/WebFrameImpl.cpp |
index 154e194331c44216ec7c3a6d8d34f3a2fd7e2128..23e2ee33ba8078e70fd1a4fb357e5eef01a6f061 100644 |
--- a/Source/web/WebFrameImpl.cpp |
+++ b/Source/web/WebFrameImpl.cpp |
@@ -554,6 +554,13 @@ WebVector<WebIconURL> WebFrameImpl::iconURLs(int iconTypesMask) const |
return WebVector<WebIconURL>(); |
} |
+void WebFrameImpl::setIsRemote(bool isRemote) |
+{ |
+ m_isRemote = isRemote; |
+ if (isRemote) |
+ client()->initializeChildFrame(frame()->view()->frameRect(), frame()->view()->visibleContentScaleFactor()); |
+} |
+ |
void WebFrameImpl::setRemoteWebLayer(WebLayer* webLayer) |
{ |
if (!frame()) |