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

Unified Diff: Source/core/html/canvas/WebGLObject.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/WebGLObject.h ('k') | Source/core/html/canvas/WebGLProgram.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « Source/core/html/canvas/WebGLObject.h ('k') | Source/core/html/canvas/WebGLProgram.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698