| Index: Source/core/html/canvas/WebGLShader.cpp
|
| diff --git a/Source/core/html/canvas/WebGLShader.cpp b/Source/core/html/canvas/WebGLShader.cpp
|
| index 0920fc9043e0ae907ad7b7a3dd2cef3c90bd0eb0..c17679b53531b68dd1b5d7dac4b5dfa39571ac1f 100644
|
| --- a/Source/core/html/canvas/WebGLShader.cpp
|
| +++ b/Source/core/html/canvas/WebGLShader.cpp
|
| @@ -27,16 +27,16 @@
|
|
|
| #include "core/html/canvas/WebGLShader.h"
|
|
|
| -#include "core/html/canvas/WebGLRenderingContext.h"
|
| +#include "core/html/canvas/WebGLRenderingContextBase.h"
|
|
|
| namespace WebCore {
|
|
|
| -PassRefPtr<WebGLShader> WebGLShader::create(WebGLRenderingContext* ctx, GC3Denum type)
|
| +PassRefPtr<WebGLShader> WebGLShader::create(WebGLRenderingContextBase* ctx, GC3Denum type)
|
| {
|
| return adoptRef(new WebGLShader(ctx, type));
|
| }
|
|
|
| -WebGLShader::WebGLShader(WebGLRenderingContext* ctx, GC3Denum type)
|
| +WebGLShader::WebGLShader(WebGLRenderingContextBase* ctx, GC3Denum type)
|
| : WebGLSharedObject(ctx)
|
| , m_type(type)
|
| , m_source("")
|
|
|