| Index: webkit/compositor/WebExternalTextureLayerImpl.h
|
| diff --git a/webkit/compositor/WebExternalTextureLayerImpl.h b/webkit/compositor/WebExternalTextureLayerImpl.h
|
| deleted file mode 100644
|
| index e7e96ec007c7ae2fca08de9ea6a6a8e37a95810b..0000000000000000000000000000000000000000
|
| --- a/webkit/compositor/WebExternalTextureLayerImpl.h
|
| +++ /dev/null
|
| @@ -1,43 +0,0 @@
|
| -// Copyright 2011 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 WebExternalTextureLayerImpl_h
|
| -#define WebExternalTextureLayerImpl_h
|
| -
|
| -#include "TextureLayerChromiumClient.h"
|
| -#include <public/WebExternalTextureLayer.h>
|
| -
|
| -namespace WebKit {
|
| -
|
| -class WebLayerImpl;
|
| -
|
| -class WebExternalTextureLayerImpl : public WebExternalTextureLayer,
|
| - public WebCore::TextureLayerChromiumClient {
|
| -public:
|
| - explicit WebExternalTextureLayerImpl(WebExternalTextureLayerClient*);
|
| - virtual ~WebExternalTextureLayerImpl();
|
| -
|
| - // WebExternalTextureLayer implementation.
|
| - virtual WebLayer* layer() OVERRIDE;
|
| - virtual void setTextureId(unsigned) OVERRIDE;
|
| - virtual void setFlipped(bool) OVERRIDE;
|
| - virtual void setUVRect(const WebFloatRect&) OVERRIDE;
|
| - virtual void setOpaque(bool) OVERRIDE;
|
| - virtual void setPremultipliedAlpha(bool) OVERRIDE;
|
| - virtual void willModifyTexture() OVERRIDE;
|
| - virtual void setRateLimitContext(bool) OVERRIDE;
|
| -
|
| - // TextureLayerChromiumClient implementation.
|
| - virtual unsigned prepareTexture(WebCore::CCTextureUpdateQueue&) OVERRIDE;
|
| - virtual WebGraphicsContext3D* context() OVERRIDE;
|
| -
|
| -private:
|
| - WebExternalTextureLayerClient* m_client;
|
| - OwnPtr<WebLayerImpl> m_layer;
|
| -};
|
| -
|
| -}
|
| -
|
| -#endif // WebExternalTextureLayerImpl_h
|
| -
|
|
|