1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
cc / test / stub_layer_tree_host_single_thread_client.h [blame]
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CC_TEST_STUB_LAYER_TREE_HOST_SINGLE_THREAD_CLIENT_H_
#define CC_TEST_STUB_LAYER_TREE_HOST_SINGLE_THREAD_CLIENT_H_
#include "cc/trees/layer_tree_host_single_thread_client.h"
namespace cc {
class StubLayerTreeHostSingleThreadClient
: public LayerTreeHostSingleThreadClient {
public:
~StubLayerTreeHostSingleThreadClient() override;
// LayerTreeHostSingleThreadClient implementation.
void DidSubmitCompositorFrame() override {}
void DidLoseLayerTreeFrameSink() override {}
};
} // namespace cc
#endif // CC_TEST_STUB_LAYER_TREE_HOST_SINGLE_THREAD_CLIENT_H_