summaryrefslogtreecommitdiffstats
path: root/webkit/compositor_bindings/web_solid_color_layer_impl.h
blob: 04887cda9e48feab71c04d2b58d8276d20feec36 (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
// 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 WebSolidColorLayerImpl_h
#define WebSolidColorLayerImpl_h

#include "base/memory/scoped_ptr.h"
#include "third_party/WebKit/Source/Platform/chromium/public/WebSolidColorLayer.h"
#include "webkit/compositor_bindings/webkit_compositor_bindings_export.h"

namespace WebKit {
class WebLayerImpl;

class WebSolidColorLayerImpl : public WebSolidColorLayer {
public:
    WEBKIT_COMPOSITOR_BINDINGS_EXPORT WebSolidColorLayerImpl();
    virtual ~WebSolidColorLayerImpl();

    // WebSolidColorLayer implementation.
    virtual WebLayer* layer() OVERRIDE;
    virtual void setBackgroundColor(WebColor) OVERRIDE;

private:
    scoped_ptr<WebLayerImpl> m_layer;
};

} // namespace WebKit

#endif // WebSolidColorLayerImpl_h