| Index: Source/core/html/canvas/WebGLTexture.cpp
|
| diff --git a/Source/core/html/canvas/WebGLTexture.cpp b/Source/core/html/canvas/WebGLTexture.cpp
|
| index c9b3d6c9c65950f80d1145e8019fe49c81772489..1cf21aa82a86493a8b894dfeffbb277e46063dc7 100644
|
| --- a/Source/core/html/canvas/WebGLTexture.cpp
|
| +++ b/Source/core/html/canvas/WebGLTexture.cpp
|
| @@ -27,16 +27,16 @@
|
|
|
| #include "core/html/canvas/WebGLTexture.h"
|
|
|
| -#include "core/html/canvas/WebGLRenderingContext.h"
|
| +#include "core/html/canvas/WebGLRenderingContextBase.h"
|
|
|
| namespace WebCore {
|
|
|
| -PassRefPtr<WebGLTexture> WebGLTexture::create(WebGLRenderingContext* ctx)
|
| +PassRefPtr<WebGLTexture> WebGLTexture::create(WebGLRenderingContextBase* ctx)
|
| {
|
| return adoptRef(new WebGLTexture(ctx));
|
| }
|
|
|
| -WebGLTexture::WebGLTexture(WebGLRenderingContext* ctx)
|
| +WebGLTexture::WebGLTexture(WebGLRenderingContextBase* ctx)
|
| : WebGLSharedObject(ctx)
|
| , m_target(0)
|
| , m_minFilter(GL_NEAREST_MIPMAP_LINEAR)
|
|
|