1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_PUBLIC_TEST_TEST_SYNCHRONOUS_COMPOSITOR_ANDROID_H_
6 #define CONTENT_PUBLIC_TEST_TEST_SYNCHRONOUS_COMPOSITOR_ANDROID_H_
8 #include "content/public/browser/android/synchronous_compositor.h"
9 #include "content/public/browser/android/synchronous_compositor_client.h"
13 class CONTENT_EXPORT TestSynchronousCompositor
: public SynchronousCompositor
{
15 TestSynchronousCompositor();
16 ~TestSynchronousCompositor() override
;
18 void SetClient(SynchronousCompositorClient
* client
);
20 // SynchronousCompositor overrides.
21 scoped_ptr
<cc::CompositorFrame
> DemandDrawHw(
22 gfx::Size surface_size
,
23 const gfx::Transform
& transform
,
26 gfx::Rect viewport_rect_for_tile_priority
,
27 const gfx::Transform
& transform_for_tile_priority
) override
;
28 void ReturnResources(const cc::CompositorFrameAck
& frame_ack
) override
{}
29 bool DemandDrawSw(SkCanvas
* canvas
) override
;
30 void SetMemoryPolicy(size_t bytes_limit
) override
{}
31 void DidChangeRootLayerScrollOffset() override
{}
32 void SetIsActive(bool is_active
) override
{}
35 SynchronousCompositorClient
* client_
;
36 bool hardware_initialized_
;
38 DISALLOW_COPY_AND_ASSIGN(TestSynchronousCompositor
);
41 } // namespace content
43 #endif // CONTENT_PUBLIC_TEST_TEST_SYNCHRONOUS_COMPOSITOR_ANDROID_H_