summaryrefslogtreecommitdiffstats
path: root/cc/solid_color_layer.cc
blob: 29d3708c45972aa69171bc7f1b062f41bd54b5b0 (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
// 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 "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()
{
}

void SolidColorLayer::setBackgroundColor(SkColor color)
{
    setContentsOpaque(SkColorGetA(color) == 255);
    Layer::setBackgroundColor(color);
}

}  // namespace cc