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

Unified Diff: Source/core/html/canvas/WebGLRenderbuffer.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
« no previous file with comments | « Source/core/html/canvas/WebGLRenderbuffer.h ('k') | Source/core/html/canvas/WebGLRenderingContext.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/canvas/WebGLRenderbuffer.cpp
diff --git a/Source/core/html/canvas/WebGLRenderbuffer.cpp b/Source/core/html/canvas/WebGLRenderbuffer.cpp
index c2add1bf81d0791d613074fc88a345435e33d0c4..777f0813ed3452edb8af091bfdf5ce3d444526c5 100644
--- a/Source/core/html/canvas/WebGLRenderbuffer.cpp
+++ b/Source/core/html/canvas/WebGLRenderbuffer.cpp
@@ -62,14 +62,14 @@ WebGLRenderbuffer::WebGLRenderbuffer(WebGLRenderingContextBase* ctx)
setObject(ctx->webContext()->createRenderbuffer());
}
-void WebGLRenderbuffer::deleteObjectImpl(blink::WebGraphicsContext3D* context3d)
+void WebGLRenderbuffer::deleteObjectImpl(WebGraphicsContext3D* context3d)
{
context3d->deleteRenderbuffer(m_object);
m_object = 0;
deleteEmulatedStencilBuffer(context3d);
}
-void WebGLRenderbuffer::deleteEmulatedStencilBuffer(blink::WebGraphicsContext3D* context3d)
+void WebGLRenderbuffer::deleteEmulatedStencilBuffer(WebGraphicsContext3D* context3d)
{
if (!m_emulatedStencilBuffer)
return;
@@ -83,4 +83,4 @@ DEFINE_TRACE(WebGLRenderbuffer)
WebGLSharedPlatform3DObject::trace(visitor);
}
-}
+} // namespace blink
« no previous file with comments | « Source/core/html/canvas/WebGLRenderbuffer.h ('k') | Source/core/html/canvas/WebGLRenderingContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698