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

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

Issue 1423053002: Make document.activeElement work with OOPIF (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@focus-preserve-page-focus-on-subframe-navigations
Patch Set: Remove some plumbing that should instead be introduced in the window.focus() CL. Created 5 years, 1 month 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
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/basictypes.h" 8 #include "base/basictypes.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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 const gfx::Size& frame_size, 152 const gfx::Size& frame_size,
153 float scale_factor, 153 float scale_factor,
154 const cc::SurfaceSequence& sequence); 154 const cc::SurfaceSequence& sequence);
155 void OnUpdateOpener(int opener_routing_id); 155 void OnUpdateOpener(int opener_routing_id);
156 void OnDidStopLoading(); 156 void OnDidStopLoading();
157 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); 157 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags);
158 void OnDispatchLoad(); 158 void OnDispatchLoad();
159 void OnDidUpdateName(const std::string& name); 159 void OnDidUpdateName(const std::string& name);
160 void OnDidUpdateOrigin(const url::Origin& origin); 160 void OnDidUpdateOrigin(const url::Origin& origin);
161 void OnSetPageFocus(bool is_focused); 161 void OnSetPageFocus(bool is_focused);
162 void OnSetFocusedFrame();
162 163
163 // The routing ID by which this RenderFrameProxy is known. 164 // The routing ID by which this RenderFrameProxy is known.
164 const int routing_id_; 165 const int routing_id_;
165 166
166 // The routing ID of the local RenderFrame (if any) which this 167 // The routing ID of the local RenderFrame (if any) which this
167 // RenderFrameProxy is meant to replace in the frame tree. 168 // RenderFrameProxy is meant to replace in the frame tree.
168 const int frame_routing_id_; 169 const int frame_routing_id_;
169 170
170 // Stores the WebRemoteFrame we are associated with. 171 // Stores the WebRemoteFrame we are associated with.
171 blink::WebRemoteFrame* web_frame_; 172 blink::WebRemoteFrame* web_frame_;
172 scoped_refptr<ChildFrameCompositingHelper> compositing_helper_; 173 scoped_refptr<ChildFrameCompositingHelper> compositing_helper_;
173 174
174 RenderViewImpl* render_view_; 175 RenderViewImpl* render_view_;
175 176
176 DISALLOW_COPY_AND_ASSIGN(RenderFrameProxy); 177 DISALLOW_COPY_AND_ASSIGN(RenderFrameProxy);
177 }; 178 };
178 179
179 } // namespace 180 } // namespace
180 181
181 #endif // CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ 182 #endif // CONTENT_RENDERER_RENDER_FRAME_PROXY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698