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

Side by Side Diff: content/browser/renderer_host/render_widget_host_delegate.h

Issue 1592573002: Fixing WebViewVisibilityTests for OOPIF-<webview>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merged Created 4 years, 10 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_DELEGATE_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_DELEGATE_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_DELEGATE_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_DELEGATE_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <vector> 10 #include <vector>
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 // Notification that the widget has lost capture. 168 // Notification that the widget has lost capture.
169 virtual void LostCapture(RenderWidgetHostImpl* render_widget_host) {} 169 virtual void LostCapture(RenderWidgetHostImpl* render_widget_host) {}
170 170
171 // Notification that the widget has lost the mouse lock. 171 // Notification that the widget has lost the mouse lock.
172 virtual void LostMouseLock(RenderWidgetHostImpl* render_widget_host) {} 172 virtual void LostMouseLock(RenderWidgetHostImpl* render_widget_host) {}
173 173
174 #if defined(OS_WIN) 174 #if defined(OS_WIN)
175 virtual gfx::NativeViewAccessible GetParentNativeViewAccessible(); 175 virtual gfx::NativeViewAccessible GetParentNativeViewAccessible();
176 #endif 176 #endif
177 177
178 // Called when the widget has sent a compositor proto. This is used in Blimp 178 // Called when the widget has sent a compositor proto. This is used in Btlimp
no sievers 2016/02/02 18:14:03 typo
179 // mode with the RemoteChannel compositor. 179 // mode with the RemoteChannel compositor.
180 virtual void ForwardCompositorProto(RenderWidgetHostImpl* render_widget_host, 180 virtual void ForwardCompositorProto(RenderWidgetHostImpl* render_widget_host,
181 const std::vector<uint8_t>& proto) {} 181 const std::vector<uint8_t>& proto) {}
182 182
183 // Called when the visibility of the RenderFrameProxyHost in outter
no sievers 2016/02/02 18:14:03 nit: s/outter/outer
184 // WebContents changes. This method is only called on an inner WebContents and
185 // will eventually notify all the RenderWidgetHostViews belonging to that
186 // WebContents.
187 virtual void OnRenderFrameProxyVisibilityChanged(bool visible) {}
188
183 protected: 189 protected:
184 virtual ~RenderWidgetHostDelegate() {} 190 virtual ~RenderWidgetHostDelegate() {}
185 }; 191 };
186 192
187 } // namespace content 193 } // namespace content
188 194
189 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_DELEGATE_H_ 195 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_DELEGATE_H_
OLDNEW
« no previous file with comments | « content/browser/frame_host/cross_process_frame_connector.cc ('k') | content/browser/web_contents/web_contents_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698