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 #ifndef CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ |
6 #define CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 void OnChildFrameProcessGone(); | 163 void OnChildFrameProcessGone(); |
164 void OnCompositorFrameSwapped(const IPC::Message& message); | 164 void OnCompositorFrameSwapped(const IPC::Message& message); |
165 void OnSetChildFrameSurface(const cc::SurfaceInfo& surface_info, | 165 void OnSetChildFrameSurface(const cc::SurfaceInfo& surface_info, |
166 const cc::SurfaceSequence& sequence); | 166 const cc::SurfaceSequence& sequence); |
167 void OnUpdateOpener(int opener_routing_id); | 167 void OnUpdateOpener(int opener_routing_id); |
168 void OnDidStopLoading(); | 168 void OnDidStopLoading(); |
169 void OnDidUpdateFramePolicy( | 169 void OnDidUpdateFramePolicy( |
170 blink::WebSandboxFlags flags, | 170 blink::WebSandboxFlags flags, |
171 const ParsedFeaturePolicyHeader& container_policy); | 171 const ParsedFeaturePolicyHeader& container_policy); |
172 void OnDispatchLoad(); | 172 void OnDispatchLoad(); |
| 173 void OnCollapse(bool collapsed); |
173 void OnDidUpdateName(const std::string& name, const std::string& unique_name); | 174 void OnDidUpdateName(const std::string& name, const std::string& unique_name); |
174 void OnAddContentSecurityPolicies( | 175 void OnAddContentSecurityPolicies( |
175 const std::vector<ContentSecurityPolicyHeader>& header); | 176 const std::vector<ContentSecurityPolicyHeader>& header); |
176 void OnResetContentSecurityPolicy(); | 177 void OnResetContentSecurityPolicy(); |
177 void OnEnforceInsecureRequestPolicy(blink::WebInsecureRequestPolicy policy); | 178 void OnEnforceInsecureRequestPolicy(blink::WebInsecureRequestPolicy policy); |
178 void OnSetFrameOwnerProperties(const FrameOwnerProperties& properties); | 179 void OnSetFrameOwnerProperties(const FrameOwnerProperties& properties); |
179 void OnDidUpdateOrigin(const url::Origin& origin, | 180 void OnDidUpdateOrigin(const url::Origin& origin, |
180 bool is_potentially_trustworthy_unique_origin); | 181 bool is_potentially_trustworthy_unique_origin); |
181 void OnSetPageFocus(bool is_focused); | 182 void OnSetPageFocus(bool is_focused); |
182 void OnSetFocusedFrame(); | 183 void OnSetFocusedFrame(); |
(...skipping 14 matching lines...) Expand all Loading... |
197 | 198 |
198 RenderViewImpl* render_view_; | 199 RenderViewImpl* render_view_; |
199 RenderWidget* render_widget_; | 200 RenderWidget* render_widget_; |
200 | 201 |
201 DISALLOW_COPY_AND_ASSIGN(RenderFrameProxy); | 202 DISALLOW_COPY_AND_ASSIGN(RenderFrameProxy); |
202 }; | 203 }; |
203 | 204 |
204 } // namespace | 205 } // namespace |
205 | 206 |
206 #endif // CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ | 207 #endif // CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ |
OLD | NEW |