| Index: webkit/compositor/WebImageLayerImpl.cpp
|
| diff --git a/webkit/compositor/WebImageLayerImpl.cpp b/webkit/compositor/WebImageLayerImpl.cpp
|
| deleted file mode 100644
|
| index bb1b56b6df623911b79556ca9f555f1e02aca7a4..0000000000000000000000000000000000000000
|
| --- a/webkit/compositor/WebImageLayerImpl.cpp
|
| +++ /dev/null
|
| @@ -1,39 +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 "config.h"
|
| -#include "WebImageLayerImpl.h"
|
| -
|
| -#include "ImageLayerChromium.h"
|
| -#include "WebLayerImpl.h"
|
| -
|
| -using WebCore::ImageLayerChromium;
|
| -
|
| -namespace WebKit {
|
| -
|
| -WebImageLayer* WebImageLayer::create()
|
| -{
|
| - return new WebImageLayerImpl();
|
| -}
|
| -
|
| -WebImageLayerImpl::WebImageLayerImpl()
|
| - : m_layer(adoptPtr(new WebLayerImpl(ImageLayerChromium::create())))
|
| -{
|
| -}
|
| -
|
| -WebImageLayerImpl::~WebImageLayerImpl()
|
| -{
|
| -}
|
| -
|
| -WebLayer* WebImageLayerImpl::layer()
|
| -{
|
| - return m_layer.get();
|
| -}
|
| -
|
| -void WebImageLayerImpl::setBitmap(SkBitmap bitmap)
|
| -{
|
| - static_cast<ImageLayerChromium*>(m_layer->layer())->setBitmap(bitmap);
|
| -}
|
| -
|
| -} // namespace WebKit
|
|
|