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

Side by Side Diff: content/renderer/render_frame_proxy.h

Issue 2008873004: Reland: Add support for entering/exiting HTML fullscreen from OOPIFs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix tests on Mac Created 4 years, 6 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 | « content/common/frame_messages.h ('k') | content/renderer/render_frame_proxy.cc » ('j') | 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 #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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 void OnDidUpdateName(const std::string& name, const std::string& unique_name); 168 void OnDidUpdateName(const std::string& name, const std::string& unique_name);
169 void OnAddContentSecurityPolicy(const ContentSecurityPolicyHeader& header); 169 void OnAddContentSecurityPolicy(const ContentSecurityPolicyHeader& header);
170 void OnResetContentSecurityPolicy(); 170 void OnResetContentSecurityPolicy();
171 void OnEnforceStrictMixedContentChecking(bool should_enforce); 171 void OnEnforceStrictMixedContentChecking(bool should_enforce);
172 void OnSetFrameOwnerProperties( 172 void OnSetFrameOwnerProperties(
173 const blink::WebFrameOwnerProperties& properties); 173 const blink::WebFrameOwnerProperties& properties);
174 void OnDidUpdateOrigin(const url::Origin& origin, 174 void OnDidUpdateOrigin(const url::Origin& origin,
175 bool is_potentially_trustworthy_unique_origin); 175 bool is_potentially_trustworthy_unique_origin);
176 void OnSetPageFocus(bool is_focused); 176 void OnSetPageFocus(bool is_focused);
177 void OnSetFocusedFrame(); 177 void OnSetFocusedFrame();
178 void OnWillEnterFullscreen();
178 179
179 // The routing ID by which this RenderFrameProxy is known. 180 // The routing ID by which this RenderFrameProxy is known.
180 const int routing_id_; 181 const int routing_id_;
181 182
182 // The routing ID of the local RenderFrame (if any) which this 183 // The routing ID of the local RenderFrame (if any) which this
183 // RenderFrameProxy is meant to replace in the frame tree. 184 // RenderFrameProxy is meant to replace in the frame tree.
184 const int frame_routing_id_; 185 const int frame_routing_id_;
185 186
186 // Stores the WebRemoteFrame we are associated with. 187 // Stores the WebRemoteFrame we are associated with.
187 blink::WebRemoteFrame* web_frame_; 188 blink::WebRemoteFrame* web_frame_;
188 scoped_refptr<ChildFrameCompositingHelper> compositing_helper_; 189 scoped_refptr<ChildFrameCompositingHelper> compositing_helper_;
189 190
190 RenderViewImpl* render_view_; 191 RenderViewImpl* render_view_;
191 RenderWidget* render_widget_; 192 RenderWidget* render_widget_;
192 193
193 DISALLOW_COPY_AND_ASSIGN(RenderFrameProxy); 194 DISALLOW_COPY_AND_ASSIGN(RenderFrameProxy);
194 }; 195 };
195 196
196 } // namespace 197 } // namespace
197 198
198 #endif // CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ 199 #endif // CONTENT_RENDERER_RENDER_FRAME_PROXY_H_
OLDNEW
« no previous file with comments | « content/common/frame_messages.h ('k') | content/renderer/render_frame_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698