diff options
author | sl.ostapenko@samsung.com <sl.ostapenko@samsung.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-04 19:47:43 +0000 |
---|---|---|
committer | sl.ostapenko@samsung.com <sl.ostapenko@samsung.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-04 19:47:43 +0000 |
commit | b308868cd5d83227073d3569c5c695c680e24e19 (patch) | |
tree | b8e289a5f00f78b2deac89340a9540b76cd51c71 /content/port | |
parent | add138e301e829d34dda42e420adcf992d1c04f6 (diff) | |
download | chromium_src-b308868cd5d83227073d3569c5c695c680e24e19.zip chromium_src-b308868cd5d83227073d3569c5c695c680e24e19.tar.gz chromium_src-b308868cd5d83227073d3569c5c695c680e24e19.tar.bz2 |
Move surface resize platform code from GpuProcessHostUIShim to RenderWidgetHostView implementations.
BUG=303425
Review URL: https://codereview.chromium.org/25795002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@227058 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/port')
-rw-r--r-- | content/port/browser/render_widget_host_view_port.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/content/port/browser/render_widget_host_view_port.h b/content/port/browser/render_widget_host_view_port.h index 1e0ba5b..f9444b3 100644 --- a/content/port/browser/render_widget_host_view_port.h +++ b/content/port/browser/render_widget_host_view_port.h @@ -255,6 +255,9 @@ class CONTENT_EXPORT RenderWidgetHostViewPort : public RenderWidgetHostView, virtual gfx::GLSurfaceHandle GetCompositingSurface() = 0; + // Resize compositing surface. + virtual void ResizeCompositingSurface(const gfx::Size&) = 0; + // Because the associated remote WebKit instance can asynchronously // prevent-default on a dispatched touch event, the touch events are queued in // the GestureRecognizer until invocation of ProcessAckedTouchEvent releases |