Index: Source/core/html/canvas/WebGL2RenderingContext.cpp |
diff --git a/Source/core/html/canvas/WebGL2RenderingContext.cpp b/Source/core/html/canvas/WebGL2RenderingContext.cpp |
index 0a746262513230dc140e1e96bc612d659b0c7584..3248dba10fca119db0ce6317733d24e487d4d004 100644 |
--- a/Source/core/html/canvas/WebGL2RenderingContext.cpp |
+++ b/Source/core/html/canvas/WebGL2RenderingContext.cpp |
@@ -34,7 +34,7 @@ PassOwnPtrWillBeRawPtr<WebGL2RenderingContext> WebGL2RenderingContext::create(HT |
} |
WebGLContextAttributes attributes = toWebGLContextAttributes(attrs); |
- OwnPtr<blink::WebGraphicsContext3D> context(createWebGraphicsContext3D(canvas, attributes, 2)); |
+ OwnPtr<WebGraphicsContext3D> context(createWebGraphicsContext3D(canvas, attributes, 2)); |
if (!context) |
return nullptr; |
OwnPtr<Extensions3DUtil> extensionsUtil = Extensions3DUtil::create(context.get()); |
@@ -57,7 +57,7 @@ PassOwnPtrWillBeRawPtr<WebGL2RenderingContext> WebGL2RenderingContext::create(HT |
return renderingContext.release(); |
} |
-WebGL2RenderingContext::WebGL2RenderingContext(HTMLCanvasElement* passedCanvas, PassOwnPtr<blink::WebGraphicsContext3D> context, const WebGLContextAttributes& requestedAttributes) |
+WebGL2RenderingContext::WebGL2RenderingContext(HTMLCanvasElement* passedCanvas, PassOwnPtr<WebGraphicsContext3D> context, const WebGLContextAttributes& requestedAttributes) |
: WebGL2RenderingContextBase(passedCanvas, context, requestedAttributes) |
{ |
} |