summaryrefslogtreecommitdiffstats
path: root/cc/test/fake_layer_tree_host_client.h
blob: 4cd9df301189cb468792eb3ee0506df2cca592af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Copyright 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CC_TEST_FAKE_LAYER_TREE_HOST_CLIENT_H_
#define CC_TEST_FAKE_LAYER_TREE_HOST_CLIENT_H_

#include "base/memory/scoped_ptr.h"
#include "cc/font_atlas.h"
#include "cc/input_handler.h"
#include "cc/layer_tree_host.h"
#include "cc/test/compositor_fake_web_graphics_context_3d.h"
#include "cc/test/fake_output_surface.h"

namespace cc {

class FakeLayerImplTreeHostClient : public LayerTreeHostClient {
public:
    FakeLayerImplTreeHostClient(bool useSoftwareRendering = false)
        : m_useSoftwareRendering(useSoftwareRendering)
    {
    }

    virtual void willBeginFrame() OVERRIDE { }
    virtual void didBeginFrame() OVERRIDE { }
    virtual void animate(double monotonicFrameBeginTime) OVERRIDE { }
    virtual void layout() OVERRIDE { }
    virtual void applyScrollAndScale(gfx::Vector2d scrollDelta, float pageScale) OVERRIDE { }

    virtual scoped_ptr<OutputSurface> createOutputSurface() OVERRIDE;
    virtual void didRecreateOutputSurface(bool success) OVERRIDE { }
    virtual scoped_ptr<InputHandler> createInputHandler() OVERRIDE;
    virtual void willCommit() OVERRIDE { }
    virtual void didCommit() OVERRIDE { }
    virtual void didCommitAndDrawFrame() OVERRIDE { }
    virtual void didCompleteSwapBuffers() OVERRIDE { }

    // Used only in the single-threaded path.
    virtual void scheduleComposite() OVERRIDE { }

    virtual scoped_ptr<FontAtlas> createFontAtlas() OVERRIDE;

private:
    bool m_useSoftwareRendering;
};

}
#endif  // CC_TEST_FAKE_LAYER_TREE_HOST_CLIENT_H_