OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 | 240 |
241 // Called when this frame has added a child. This is a continuation of an IPC | 241 // Called when this frame has added a child. This is a continuation of an IPC |
242 // that was partially handled on the IO thread (to allocate |new_routing_id|), | 242 // that was partially handled on the IO thread (to allocate |new_routing_id|), |
243 // and is forwarded here. The renderer has already been told to create a | 243 // and is forwarded here. The renderer has already been told to create a |
244 // RenderFrame with |new_routing_id|. | 244 // RenderFrame with |new_routing_id|. |
245 void OnCreateChildFrame(int new_routing_id, | 245 void OnCreateChildFrame(int new_routing_id, |
246 blink::WebTreeScopeType scope, | 246 blink::WebTreeScopeType scope, |
247 const std::string& frame_name, | 247 const std::string& frame_name, |
248 const std::string& frame_unique_name, | 248 const std::string& frame_unique_name, |
249 blink::WebSandboxFlags sandbox_flags, | 249 blink::WebSandboxFlags sandbox_flags, |
| 250 const ParsedFeaturePolicyHeader& container_policy, |
250 const FrameOwnerProperties& frame_owner_properties); | 251 const FrameOwnerProperties& frame_owner_properties); |
251 | 252 |
252 // Called when this frame tries to open a new WebContents, e.g. via a script | 253 // Called when this frame tries to open a new WebContents, e.g. via a script |
253 // call to window.open(). The renderer has already been told to create the | 254 // call to window.open(). The renderer has already been told to create the |
254 // RenderView and RenderFrame with the specified route ids, which were | 255 // RenderView and RenderFrame with the specified route ids, which were |
255 // assigned on the IO thread. | 256 // assigned on the IO thread. |
256 void OnCreateNewWindow(int32_t render_view_route_id, | 257 void OnCreateNewWindow(int32_t render_view_route_id, |
257 int32_t main_frame_route_id, | 258 int32_t main_frame_route_id, |
258 int32_t main_frame_widget_route_id, | 259 int32_t main_frame_widget_route_id, |
259 const mojom::CreateNewWindowParams& params, | 260 const mojom::CreateNewWindowParams& params, |
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
731 void OnDidChangeName(const std::string& name, const std::string& unique_name); | 732 void OnDidChangeName(const std::string& name, const std::string& unique_name); |
732 void OnDidSetFeaturePolicyHeader( | 733 void OnDidSetFeaturePolicyHeader( |
733 const ParsedFeaturePolicyHeader& parsed_header); | 734 const ParsedFeaturePolicyHeader& parsed_header); |
734 | 735 |
735 // A new set of CSP |policies| has been added to the document. | 736 // A new set of CSP |policies| has been added to the document. |
736 void OnDidAddContentSecurityPolicies( | 737 void OnDidAddContentSecurityPolicies( |
737 const std::vector<ContentSecurityPolicy>& policies); | 738 const std::vector<ContentSecurityPolicy>& policies); |
738 | 739 |
739 void OnEnforceInsecureRequestPolicy(blink::WebInsecureRequestPolicy policy); | 740 void OnEnforceInsecureRequestPolicy(blink::WebInsecureRequestPolicy policy); |
740 void OnUpdateToUniqueOrigin(bool is_potentially_trustworthy_unique_origin); | 741 void OnUpdateToUniqueOrigin(bool is_potentially_trustworthy_unique_origin); |
741 void OnDidChangeSandboxFlags(int32_t frame_routing_id, | 742 void OnDidChangeFramePolicy( |
742 blink::WebSandboxFlags flags); | 743 int32_t frame_routing_id, |
| 744 blink::WebSandboxFlags flags, |
| 745 const ParsedFeaturePolicyHeader& container_policy); |
743 void OnDidChangeFrameOwnerProperties(int32_t frame_routing_id, | 746 void OnDidChangeFrameOwnerProperties(int32_t frame_routing_id, |
744 const FrameOwnerProperties& properties); | 747 const FrameOwnerProperties& properties); |
745 void OnUpdateTitle(const base::string16& title, | 748 void OnUpdateTitle(const base::string16& title, |
746 blink::WebTextDirection title_direction); | 749 blink::WebTextDirection title_direction); |
747 void OnUpdateEncoding(const std::string& encoding); | 750 void OnUpdateEncoding(const std::string& encoding); |
748 void OnBeginNavigation(const CommonNavigationParams& common_params, | 751 void OnBeginNavigation(const CommonNavigationParams& common_params, |
749 const BeginNavigationParams& begin_params); | 752 const BeginNavigationParams& begin_params); |
750 void OnAbortNavigation(); | 753 void OnAbortNavigation(); |
751 void OnDispatchLoad(); | 754 void OnDispatchLoad(); |
752 void OnAccessibilityEvents( | 755 void OnAccessibilityEvents( |
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1186 | 1189 |
1187 // NOTE: This must be the last member. | 1190 // NOTE: This must be the last member. |
1188 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1191 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
1189 | 1192 |
1190 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1193 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
1191 }; | 1194 }; |
1192 | 1195 |
1193 } // namespace content | 1196 } // namespace content |
1194 | 1197 |
1195 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1198 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |