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

Unified Diff: Source/core/html/canvas/WebGL2RenderingContext.cpp

Issue 1115553002: Removing blink::prefix (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 8 months 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: 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)
{
}
« no previous file with comments | « Source/core/html/canvas/WebGL2RenderingContext.h ('k') | Source/core/html/canvas/WebGL2RenderingContextBase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698