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

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

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

Powered by Google App Engine
This is Rietveld 408576698