| 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" | |
| 8 #include "bindings/core/v8/WindowProxy.h" | 7 #include "bindings/core/v8/WindowProxy.h" |
| 9 #include "core/dom/Fullscreen.h" | 8 #include "core/dom/Fullscreen.h" |
| 10 #include "core/dom/RemoteSecurityContext.h" | 9 #include "core/dom/RemoteSecurityContext.h" |
| 11 #include "core/dom/SecurityContext.h" | 10 #include "core/dom/SecurityContext.h" |
| 12 #include "core/frame/FrameView.h" | 11 #include "core/frame/FrameView.h" |
| 13 #include "core/frame/Settings.h" | 12 #include "core/frame/Settings.h" |
| 14 #include "core/frame/csp/ContentSecurityPolicy.h" | 13 #include "core/frame/csp/ContentSecurityPolicy.h" |
| 15 #include "core/html/HTMLFrameOwnerElement.h" | 14 #include "core/html/HTMLFrameOwnerElement.h" |
| 16 #include "core/layout/LayoutObject.h" | 15 #include "core/layout/LayoutObject.h" |
| 17 #include "core/page/Page.h" | 16 #include "core/page/Page.h" |
| 17 #include "platform/bindings/DOMWrapperWorld.h" |
| 18 #include "platform/feature_policy/FeaturePolicy.h" | 18 #include "platform/feature_policy/FeaturePolicy.h" |
| 19 #include "platform/heap/Handle.h" | 19 #include "platform/heap/Handle.h" |
| 20 #include "public/platform/WebFeaturePolicy.h" | 20 #include "public/platform/WebFeaturePolicy.h" |
| 21 #include "public/platform/WebFloatRect.h" | 21 #include "public/platform/WebFloatRect.h" |
| 22 #include "public/platform/WebRect.h" | 22 #include "public/platform/WebRect.h" |
| 23 #include "public/web/WebDocument.h" | 23 #include "public/web/WebDocument.h" |
| 24 #include "public/web/WebFrameOwnerProperties.h" | 24 #include "public/web/WebFrameOwnerProperties.h" |
| 25 #include "public/web/WebPerformance.h" | 25 #include "public/web/WebPerformance.h" |
| 26 #include "public/web/WebRange.h" | 26 #include "public/web/WebRange.h" |
| 27 #include "public/web/WebTreeScopeType.h" | 27 #include "public/web/WebTreeScopeType.h" |
| (...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 536 } | 536 } |
| 537 | 537 |
| 538 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, | 538 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, |
| 539 WebRemoteFrameClient* client) | 539 WebRemoteFrameClient* client) |
| 540 : WebRemoteFrame(scope), | 540 : WebRemoteFrame(scope), |
| 541 frame_client_(RemoteFrameClientImpl::Create(this)), | 541 frame_client_(RemoteFrameClientImpl::Create(this)), |
| 542 client_(client), | 542 client_(client), |
| 543 self_keep_alive_(this) {} | 543 self_keep_alive_(this) {} |
| 544 | 544 |
| 545 } // namespace blink | 545 } // namespace blink |
| OLD | NEW |