| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "webkit/renderer/compositor_bindings/web_solid_color_layer_impl.h" | 5 #include "content/renderer/compositor_bindings/web_solid_color_layer_impl.h" |
| 6 | 6 |
| 7 #include "cc/layers/solid_color_layer.h" | 7 #include "cc/layers/solid_color_layer.h" |
| 8 #include "webkit/renderer/compositor_bindings/web_layer_impl.h" | 8 #include "content/renderer/compositor_bindings/web_layer_impl.h" |
| 9 | 9 |
| 10 using cc::SolidColorLayer; | 10 using cc::SolidColorLayer; |
| 11 | 11 |
| 12 namespace webkit { | 12 namespace content { |
| 13 | 13 |
| 14 WebSolidColorLayerImpl::WebSolidColorLayerImpl() | 14 WebSolidColorLayerImpl::WebSolidColorLayerImpl() |
| 15 : layer_(new WebLayerImpl(SolidColorLayer::Create())) { | 15 : layer_(new WebLayerImpl(SolidColorLayer::Create())) { |
| 16 layer_->layer()->SetIsDrawable(true); | 16 layer_->layer()->SetIsDrawable(true); |
| 17 } | 17 } |
| 18 | 18 |
| 19 WebSolidColorLayerImpl::~WebSolidColorLayerImpl() {} | 19 WebSolidColorLayerImpl::~WebSolidColorLayerImpl() { |
| 20 } |
| 20 | 21 |
| 21 blink::WebLayer* WebSolidColorLayerImpl::layer() { return layer_.get(); } | 22 blink::WebLayer* WebSolidColorLayerImpl::layer() { |
| 23 return layer_.get(); |
| 24 } |
| 22 | 25 |
| 23 void WebSolidColorLayerImpl::setBackgroundColor(blink::WebColor color) { | 26 void WebSolidColorLayerImpl::setBackgroundColor(blink::WebColor color) { |
| 24 layer_->setBackgroundColor(color); | 27 layer_->setBackgroundColor(color); |
| 25 } | 28 } |
| 26 | 29 |
| 27 } // namespace webkit | 30 } // namespace content |
| OLD | NEW |