blob: f162473fe80964a6a09c27103c3a7c6c98b9e9a0 (
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
|
// Copyright 2013 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_DELEGATED_RENDERER_LAYER_H_
#define CC_TEST_FAKE_DELEGATED_RENDERER_LAYER_H_
#include "cc/layers/delegated_renderer_layer.h"
namespace cc {
class FakeDelegatedRendererLayer : public DelegatedRendererLayer {
public:
static scoped_refptr<FakeDelegatedRendererLayer> Create(
DelegatedFrameProvider* frame_provider) {
return make_scoped_refptr(
new FakeDelegatedRendererLayer(frame_provider));
}
virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl)
OVERRIDE;
protected:
explicit FakeDelegatedRendererLayer(DelegatedFrameProvider* frame_provider);
virtual ~FakeDelegatedRendererLayer();
};
} // namespace cc
#endif // CC_TEST_FAKE_DELEGATED_RENDERER_LAYER_H_
|