Index: Source/core/html/canvas/WebGLObject.cpp |
diff --git a/Source/core/html/canvas/WebGLObject.cpp b/Source/core/html/canvas/WebGLObject.cpp |
index 99b41a35fc5454cce401c16ea821e19e4740fb47..57903b81b805ec2f9f06464eafc1f7f25624be48 100644 |
--- a/Source/core/html/canvas/WebGLObject.cpp |
+++ b/Source/core/html/canvas/WebGLObject.cpp |
@@ -41,7 +41,7 @@ WebGLObject::~WebGLObject() |
ASSERT(m_deleted); |
} |
-void WebGLObject::deleteObject(blink::WebGraphicsContext3D* context3d) |
+void WebGLObject::deleteObject(WebGraphicsContext3D* context3d) |
{ |
m_deleted = true; |
if (!hasObject()) |
@@ -85,7 +85,7 @@ void WebGLObject::detachAndDeleteObject() |
deleteObject(nullptr); |
} |
-void WebGLObject::onDetached(blink::WebGraphicsContext3D* context3d) |
+void WebGLObject::onDetached(WebGraphicsContext3D* context3d) |
{ |
if (m_attachmentCount) |
--m_attachmentCount; |
@@ -93,4 +93,4 @@ void WebGLObject::onDetached(blink::WebGraphicsContext3D* context3d) |
deleteObject(context3d); |
} |
-} |
+} // namespace blink |