| Index: cc/test/fake_output_surface_client.h
|
| diff --git a/cc/test/fake_output_surface_client.h b/cc/test/fake_output_surface_client.h
|
| index bb31cfadb50d97ea5275b637edd9596e5fbddaf9..26c3de357c705d6370e67d78cbb8bc8c23b86ba4 100644
|
| --- a/cc/test/fake_output_surface_client.h
|
| +++ b/cc/test/fake_output_surface_client.h
|
| @@ -27,15 +27,14 @@ class FakeOutputSurfaceClient : public OutputSurfaceClient {
|
| void ReclaimResources(const CompositorFrameAck* ack) override {}
|
| void DidLoseOutputSurface() override;
|
| void SetExternalDrawConstraints(
|
| - const gfx::Transform& transform,
|
| - const gfx::Rect& viewport,
|
| - const gfx::Rect& clip,
|
| const gfx::Rect& viewport_rect_for_tile_priority,
|
| - const gfx::Transform& transform_for_tile_priority,
|
| - bool resourceless_software_draw) override {}
|
| + const gfx::Transform& transform_for_tile_priority) override {}
|
| void SetMemoryPolicy(const ManagedMemoryPolicy& policy) override;
|
| void SetTreeActivationCallback(const base::Closure&) override {}
|
| - void OnDraw() override {}
|
| + void OnDraw(const gfx::Transform& transform,
|
| + const gfx::Rect& viewport,
|
| + const gfx::Rect& clip,
|
| + bool resourceless_software_draw) override {}
|
|
|
| int swap_count() { return swap_count_; }
|
|
|
|
|