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

Unified Diff: content/public/browser/android/compositor.h

Issue 63253002: Rename WebKit namespace to blink (part 3) (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: content/public/browser/android/compositor.h
diff --git a/content/public/browser/android/compositor.h b/content/public/browser/android/compositor.h
index fa633354cbe60e49a34b10b8780dcaae73579417..053a45496cdc781ea7fcf40e439d18e86626ed76 100644
--- a/content/public/browser/android/compositor.h
+++ b/content/public/browser/android/compositor.h
@@ -76,27 +76,27 @@ class CONTENT_EXPORT Compositor {
// Generates an OpenGL texture and returns a texture handle. May return 0
// if the current context is lost.
- virtual WebKit::WebGLId GenerateTexture(gfx::JavaBitmap& bitmap) = 0;
+ virtual blink::WebGLId GenerateTexture(gfx::JavaBitmap& bitmap) = 0;
// Generates an OpenGL compressed texture and returns a texture handle. May
// return 0 if the current context is lost.
- virtual WebKit::WebGLId GenerateCompressedTexture(gfx::Size& size,
+ virtual blink::WebGLId GenerateCompressedTexture(gfx::Size& size,
int data_size,
void* data) = 0;
// Deletes an OpenGL texture.
- virtual void DeleteTexture(WebKit::WebGLId texture_id) = 0;
+ virtual void DeleteTexture(blink::WebGLId texture_id) = 0;
// Grabs a copy of |texture_id| and saves it into |bitmap|. No scaling is
// done. It is assumed that the texture size matches that of the bitmap.
- virtual bool CopyTextureToBitmap(WebKit::WebGLId texture_id,
+ virtual bool CopyTextureToBitmap(blink::WebGLId texture_id,
gfx::JavaBitmap& bitmap) = 0;
// Grabs a copy of |texture_id| and saves it into |bitmap|. No scaling is
// done. |src_rect| allows the caller to specify which rect of |texture_id|
// to copy to |bitmap|. It needs to match the size of |bitmap|. Returns
// true if the |texture_id| was copied into |bitmap|, false if not.
- virtual bool CopyTextureToBitmap(WebKit::WebGLId texture_id,
+ virtual bool CopyTextureToBitmap(blink::WebGLId texture_id,
const gfx::Rect& src_rect,
gfx::JavaBitmap& bitmap) = 0;
protected:
« no previous file with comments | « content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc ('k') | content/public/browser/android/content_view_layer_renderer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698