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

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

Issue 2883033003: Propagate inert state to OOPIFs when a modal dialog is active (Closed)
Patch Set: nit addressed Created 3 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/view_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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 void ForwardPostMessage(blink::WebLocalFrame* sourceFrame, 134 void ForwardPostMessage(blink::WebLocalFrame* sourceFrame,
135 blink::WebRemoteFrame* targetFrame, 135 blink::WebRemoteFrame* targetFrame,
136 blink::WebSecurityOrigin target, 136 blink::WebSecurityOrigin target,
137 blink::WebDOMMessageEvent event) override; 137 blink::WebDOMMessageEvent event) override;
138 void Navigate(const blink::WebURLRequest& request, 138 void Navigate(const blink::WebURLRequest& request,
139 bool should_replace_current_entry) override; 139 bool should_replace_current_entry) override;
140 void FrameRectsChanged(const blink::WebRect& frame_rect) override; 140 void FrameRectsChanged(const blink::WebRect& frame_rect) override;
141 void UpdateRemoteViewportIntersection( 141 void UpdateRemoteViewportIntersection(
142 const blink::WebRect& viewportIntersection) override; 142 const blink::WebRect& viewportIntersection) override;
143 void VisibilityChanged(bool visible) override; 143 void VisibilityChanged(bool visible) override;
144 void SetIsInert(bool) override;
144 void DidChangeOpener(blink::WebFrame* opener) override; 145 void DidChangeOpener(blink::WebFrame* opener) override;
145 void AdvanceFocus(blink::WebFocusType type, 146 void AdvanceFocus(blink::WebFocusType type,
146 blink::WebLocalFrame* source) override; 147 blink::WebLocalFrame* source) override;
147 void FrameFocused() override; 148 void FrameFocused() override;
148 149
149 // IPC handlers 150 // IPC handlers
150 void OnDidStartLoading(); 151 void OnDidStartLoading();
151 152
152 private: 153 private:
153 RenderFrameProxy(int routing_id); 154 RenderFrameProxy(int routing_id);
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 200
200 RenderViewImpl* render_view_; 201 RenderViewImpl* render_view_;
201 RenderWidget* render_widget_; 202 RenderWidget* render_widget_;
202 203
203 DISALLOW_COPY_AND_ASSIGN(RenderFrameProxy); 204 DISALLOW_COPY_AND_ASSIGN(RenderFrameProxy);
204 }; 205 };
205 206
206 } // namespace 207 } // namespace
207 208
208 #endif // CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ 209 #endif // CONTENT_RENDERER_RENDER_FRAME_PROXY_H_
OLDNEW
« no previous file with comments | « content/common/view_messages.h ('k') | content/renderer/render_frame_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698