Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp

Issue 2848963002: Clean up bindings/core/v8 (Part 1) (Closed)
Patch Set: Fix build Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/web/WebLocalFrameImpl.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebLocalFrameImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698