OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "web/WebRemoteFrameImpl.h" | 5 #include "web/WebRemoteFrameImpl.h" |
6 | 6 |
7 #include "bindings/core/v8/DOMWrapperWorld.h" | 7 #include "bindings/core/v8/DOMWrapperWorld.h" |
8 #include "bindings/core/v8/WindowProxy.h" | 8 #include "bindings/core/v8/WindowProxy.h" |
9 #include "core/dom/Fullscreen.h" | 9 #include "core/dom/Fullscreen.h" |
10 #include "core/dom/RemoteSecurityContext.h" | 10 #include "core/dom/RemoteSecurityContext.h" |
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
418 if (RuntimeEnabledFeatures::featurePolicyEnabled()) { | 418 if (RuntimeEnabledFeatures::featurePolicyEnabled()) { |
419 WebFeaturePolicy* parentFeaturePolicy = nullptr; | 419 WebFeaturePolicy* parentFeaturePolicy = nullptr; |
420 if (parent()) { | 420 if (parent()) { |
421 Frame* parentFrame = frame()->client()->parent(); | 421 Frame* parentFrame = frame()->client()->parent(); |
422 parentFeaturePolicy = parentFrame->securityContext()->getFeaturePolicy(); | 422 parentFeaturePolicy = parentFrame->securityContext()->getFeaturePolicy(); |
423 } | 423 } |
424 WebParsedFeaturePolicy containerPolicy; | 424 WebParsedFeaturePolicy containerPolicy; |
425 if (frame() && frame()->owner()) { | 425 if (frame() && frame()->owner()) { |
426 containerPolicy = getContainerPolicyFromAllowedFeatures( | 426 containerPolicy = getContainerPolicyFromAllowedFeatures( |
427 frame()->owner()->allowedFeatures(), | 427 frame()->owner()->allowedFeatures(), |
| 428 frame()->owner()->allowFullscreen(), |
| 429 frame()->owner()->allowPaymentRequest(), |
428 frame()->securityContext()->getSecurityOrigin()); | 430 frame()->securityContext()->getSecurityOrigin()); |
429 } | 431 } |
430 frame()->securityContext()->initializeFeaturePolicy( | 432 frame()->securityContext()->initializeFeaturePolicy( |
431 parsedHeader, containerPolicy, parentFeaturePolicy); | 433 parsedHeader, containerPolicy, parentFeaturePolicy); |
432 } | 434 } |
433 } | 435 } |
434 | 436 |
435 void WebRemoteFrameImpl::addReplicatedContentSecurityPolicyHeader( | 437 void WebRemoteFrameImpl::addReplicatedContentSecurityPolicyHeader( |
436 const WebString& headerValue, | 438 const WebString& headerValue, |
437 WebContentSecurityPolicyType type, | 439 WebContentSecurityPolicyType type, |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
527 } | 529 } |
528 | 530 |
529 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, | 531 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, |
530 WebRemoteFrameClient* client) | 532 WebRemoteFrameClient* client) |
531 : WebRemoteFrame(scope), | 533 : WebRemoteFrame(scope), |
532 m_frameClient(RemoteFrameClientImpl::create(this)), | 534 m_frameClient(RemoteFrameClientImpl::create(this)), |
533 m_client(client), | 535 m_client(client), |
534 m_selfKeepAlive(this) {} | 536 m_selfKeepAlive(this) {} |
535 | 537 |
536 } // namespace blink | 538 } // namespace blink |
OLD | NEW |