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

Unified Diff: webkit/renderer/compositor_bindings/web_external_texture_layer_impl.h

Issue 61553006: Rename WebKit namespace to blink (part 5) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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
Index: webkit/renderer/compositor_bindings/web_external_texture_layer_impl.h
diff --git a/webkit/renderer/compositor_bindings/web_external_texture_layer_impl.h b/webkit/renderer/compositor_bindings/web_external_texture_layer_impl.h
index 92d7e515539940bd7dbbfbffb79c0125d8d19257..56745b9b943e7280f875f1aeeea03394134768ea 100644
--- a/webkit/renderer/compositor_bindings/web_external_texture_layer_impl.h
+++ b/webkit/renderer/compositor_bindings/web_external_texture_layer_impl.h
@@ -17,7 +17,7 @@ class SingleReleaseCallback;
class TextureMailbox;
}
-namespace WebKit {
+namespace blink {
struct WebFloatRect;
struct WebExternalTextureMailbox;
}
@@ -28,16 +28,16 @@ class WebLayerImpl;
class WebExternalBitmapImpl;
class WebExternalTextureLayerImpl
- : public WebKit::WebExternalTextureLayer,
+ : public blink::WebExternalTextureLayer,
public cc::TextureLayerClient,
public base::SupportsWeakPtr<WebExternalTextureLayerImpl> {
public:
WEBKIT_COMPOSITOR_BINDINGS_EXPORT explicit WebExternalTextureLayerImpl(
- WebKit::WebExternalTextureLayerClient*);
+ blink::WebExternalTextureLayerClient*);
virtual ~WebExternalTextureLayerImpl();
- // WebKit::WebExternalTextureLayer implementation.
- virtual WebKit::WebLayer* layer();
+ // blink::WebExternalTextureLayer implementation.
+ virtual blink::WebLayer* layer();
virtual void clearTexture();
virtual void setOpaque(bool opaque);
virtual void setPremultipliedAlpha(bool premultiplied);
@@ -54,14 +54,14 @@ class WebExternalTextureLayerImpl
private:
static void DidReleaseMailbox(
base::WeakPtr<WebExternalTextureLayerImpl> layer,
- const WebKit::WebExternalTextureMailbox& mailbox,
+ const blink::WebExternalTextureMailbox& mailbox,
WebExternalBitmapImpl* bitmap,
unsigned sync_point,
bool lost_resource);
WebExternalBitmapImpl* AllocateBitmap();
- WebKit::WebExternalTextureLayerClient* client_;
+ blink::WebExternalTextureLayerClient* client_;
scoped_ptr<WebLayerImpl> layer_;
ScopedVector<WebExternalBitmapImpl> free_bitmaps_;

Powered by Google App Engine
This is Rietveld 408576698