| Index: content/port/browser/render_widget_host_view_port.h
|
| ===================================================================
|
| --- content/port/browser/render_widget_host_view_port.h (revision 138418)
|
| +++ content/port/browser/render_widget_host_view_port.h (working copy)
|
| @@ -162,12 +162,12 @@
|
| // too far ahead. They may all be zero, in which case no flow control is
|
| // enforced; this case is currently used for accelerated plugins.
|
| virtual void AcceleratedSurfaceBuffersSwapped(
|
| - const GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params& params_in_pixel,
|
| + const GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params& params,
|
| int gpu_host_id) = 0;
|
| // Similar to above, except |params.(x|y|width|height)| define the region
|
| // of the surface that changed.
|
| virtual void AcceleratedSurfacePostSubBuffer(
|
| - const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params_in_pixel,
|
| + const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params,
|
| int gpu_host_id) = 0;
|
|
|
| // Release the accelerated surface temporarily. It will be recreated on the
|
| @@ -221,8 +221,8 @@
|
|
|
| #if defined(USE_AURA)
|
| virtual void AcceleratedSurfaceNew(
|
| - int32 width_in_pixel,
|
| - int32 height_in_pixel,
|
| + int32 width,
|
| + int32 height,
|
| uint64* surface_id,
|
| TransportDIB::Handle* surface_handle) = 0;
|
| virtual void AcceleratedSurfaceRelease(uint64 surface_id) = 0;
|
|
|