Index: content/port/browser/render_widget_host_view_port.h |
=================================================================== |
--- content/port/browser/render_widget_host_view_port.h (revision 221161) |
+++ content/port/browser/render_widget_host_view_port.h (working copy) |
@@ -253,6 +253,11 @@ |
// Gets the bounds of the window, in screen coordinates. |
virtual gfx::Rect GetBoundsInRootWindow() = 0; |
+ // Set expected image size coming from renderer. This is essential to emulate |
+ // device metrics, where render widget renders only a part of the view. |
+ // Empty |size| means that default view size is expected. |
+ virtual void SetExpectedRenderedSize(const gfx::Size& size) = 0; |
+ |
virtual gfx::GLSurfaceHandle GetCompositingSurface() = 0; |
// Because the associated remote WebKit instance can asynchronously |