Index: third_party/WebKit/Source/web/LocalFrameClientImpl.cpp |
diff --git a/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp b/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp |
index 6d41c4722aaa74a90af2d742fd2a925c88fa42b0..a379b936c30261b78c658b53c5ee9e5c9877b025 100644 |
--- a/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp |
+++ b/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp |
@@ -928,7 +928,7 @@ void LocalFrameClientImpl::didAddContentSecurityPolicies( |
} |
void LocalFrameClientImpl::didChangeFrameOwnerProperties( |
- HTMLFrameElementBase* frameElement) { |
+ HTMLFrameOwnerElement* frameElement) { |
if (!m_webFrame->client()) |
return; |
@@ -938,8 +938,8 @@ void LocalFrameClientImpl::didChangeFrameOwnerProperties( |
frameElement->browsingContextContainerName(), |
frameElement->scrollingMode(), frameElement->marginWidth(), |
frameElement->marginHeight(), frameElement->allowFullscreen(), |
- frameElement->allowPaymentRequest(), frameElement->csp(), |
- frameElement->allowedFeatures())); |
+ frameElement->allowPaymentRequest(), frameElement->isDisplayNone(), |
+ frameElement->csp(), frameElement->allowedFeatures())); |
} |
void LocalFrameClientImpl::dispatchWillStartUsingPeerConnectionHandler( |