| Index: cc/output/output_surface_client.h
|
| diff --git a/cc/output/output_surface_client.h b/cc/output/output_surface_client.h
|
| index d82f30df4992c96d0f4013ddc4f50788883a940e..7e509a8269ec9f255ece21b101699ca1407c2109 100644
|
| --- a/cc/output/output_surface_client.h
|
| +++ b/cc/output/output_surface_client.h
|
| @@ -30,15 +30,15 @@ class CC_EXPORT OutputSurfaceClient {
|
| virtual bool DeferredInitialize(
|
| scoped_refptr<ContextProvider> offscreen_context_provider) = 0;
|
| virtual void ReleaseGL() = 0;
|
| - virtual void SetNeedsRedrawRect(gfx::Rect damage_rect) = 0;
|
| + virtual void SetNeedsRedrawRect(const gfx::Rect& damage_rect) = 0;
|
| virtual void BeginImplFrame(const BeginFrameArgs& args) = 0;
|
| virtual void DidSwapBuffers() = 0;
|
| virtual void OnSwapBuffersComplete() = 0;
|
| virtual void ReclaimResources(const CompositorFrameAck* ack) = 0;
|
| virtual void DidLoseOutputSurface() = 0;
|
| virtual void SetExternalDrawConstraints(const gfx::Transform& transform,
|
| - gfx::Rect viewport,
|
| - gfx::Rect clip,
|
| + const gfx::Rect& viewport,
|
| + const gfx::Rect& clip,
|
| bool valid_for_tile_management) = 0;
|
| virtual void SetMemoryPolicy(const ManagedMemoryPolicy& policy) = 0;
|
| // If set, |callback| will be called subsequent to each new tree activation,
|
|
|