Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(262)

Unified Diff: webkit/compositor/WebExternalTextureLayerImpl.h

Issue 10920056: Make cc_unittests and webkit_compositor_unittests executable always (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rename to webkit_compositor_bindings Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/compositor/WebContentLayerImpl.cpp ('k') | webkit/compositor/WebExternalTextureLayerImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
-
« no previous file with comments | « webkit/compositor/WebContentLayerImpl.cpp ('k') | webkit/compositor/WebExternalTextureLayerImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698