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

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

Issue 2431473003: Intersection Observer support for OOPIF (Closed)
Patch Set: dcheng comments addressed Created 3 years, 11 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 // blink::WebRemoteFrameClient implementation: 124 // blink::WebRemoteFrameClient implementation:
125 void frameDetached(DetachType type) override; 125 void frameDetached(DetachType type) override;
126 void forwardPostMessage(blink::WebLocalFrame* sourceFrame, 126 void forwardPostMessage(blink::WebLocalFrame* sourceFrame,
127 blink::WebRemoteFrame* targetFrame, 127 blink::WebRemoteFrame* targetFrame,
128 blink::WebSecurityOrigin target, 128 blink::WebSecurityOrigin target,
129 blink::WebDOMMessageEvent event) override; 129 blink::WebDOMMessageEvent event) override;
130 void navigate(const blink::WebURLRequest& request, 130 void navigate(const blink::WebURLRequest& request,
131 bool should_replace_current_entry) override; 131 bool should_replace_current_entry) override;
132 void forwardInputEvent(const blink::WebInputEvent* event) override; 132 void forwardInputEvent(const blink::WebInputEvent* event) override;
133 void frameRectsChanged(const blink::WebRect& frame_rect) override; 133 void frameRectsChanged(const blink::WebRect& frame_rect) override;
134 void updateRemoteViewportIntersection(
135 const blink::WebRect& viewportIntersection) override;
134 void visibilityChanged(bool visible) override; 136 void visibilityChanged(bool visible) override;
135 void setHasReceivedUserGesture() override; 137 void setHasReceivedUserGesture() override;
136 void didChangeOpener(blink::WebFrame* opener) override; 138 void didChangeOpener(blink::WebFrame* opener) override;
137 void advanceFocus(blink::WebFocusType type, 139 void advanceFocus(blink::WebFocusType type,
138 blink::WebLocalFrame* source) override; 140 blink::WebLocalFrame* source) override;
139 void frameFocused() override; 141 void frameFocused() override;
140 142
141 // IPC handlers 143 // IPC handlers
142 void OnDidStartLoading(); 144 void OnDidStartLoading();
143 145
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 189
188 RenderViewImpl* render_view_; 190 RenderViewImpl* render_view_;
189 RenderWidget* render_widget_; 191 RenderWidget* render_widget_;
190 192
191 DISALLOW_COPY_AND_ASSIGN(RenderFrameProxy); 193 DISALLOW_COPY_AND_ASSIGN(RenderFrameProxy);
192 }; 194 };
193 195
194 } // namespace 196 } // namespace
195 197
196 #endif // CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ 198 #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