blob: e562c5edfd2b05236a4ec56595890fc38068c4ae (
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
|
// 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.
#include "config.h"
#include "cc/solid_color_layer.h"
#include "cc/solid_color_layer_impl.h"
namespace cc {
scoped_ptr<LayerImpl> SolidColorLayer::createLayerImpl()
{
return SolidColorLayerImpl::create(id()).PassAs<LayerImpl>();
}
scoped_refptr<SolidColorLayer> SolidColorLayer::create()
{
return make_scoped_refptr(new SolidColorLayer());
}
SolidColorLayer::SolidColorLayer()
: Layer()
{
}
SolidColorLayer::~SolidColorLayer()
{
}
} // namespace cc
|