Index: webkit/compositor_bindings/web_solid_color_layer_impl.cc |
diff --git a/webkit/compositor_bindings/web_solid_color_layer_impl.cc b/webkit/compositor_bindings/web_solid_color_layer_impl.cc |
deleted file mode 100644 |
index aaf19be1cdcbaa7045192640affbfad16a8c309a..0000000000000000000000000000000000000000 |
--- a/webkit/compositor_bindings/web_solid_color_layer_impl.cc |
+++ /dev/null |
@@ -1,27 +0,0 @@ |
-// 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 "webkit/compositor_bindings/web_solid_color_layer_impl.h" |
- |
-#include "cc/layers/solid_color_layer.h" |
-#include "webkit/compositor_bindings/web_layer_impl.h" |
- |
-using cc::SolidColorLayer; |
- |
-namespace webkit { |
- |
-WebSolidColorLayerImpl::WebSolidColorLayerImpl() |
- : layer_(new WebLayerImpl(SolidColorLayer::Create())) { |
- layer_->layer()->SetIsDrawable(true); |
-} |
- |
-WebSolidColorLayerImpl::~WebSolidColorLayerImpl() {} |
- |
-WebKit::WebLayer* WebSolidColorLayerImpl::layer() { return layer_.get(); } |
- |
-void WebSolidColorLayerImpl::setBackgroundColor(WebKit::WebColor color) { |
- layer_->setBackgroundColor(color); |
-} |
- |
-} // namespace webkit |