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

Unified Diff: Source/platform/graphics/gpu/Extensions3DUtil.cpp

Issue 464273002: Cleanup namespace usage in platform/graphics/[filters/* to skia/*] and platform/graphics/[B-D]* (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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/platform/graphics/gpu/Extensions3DUtil.cpp
diff --git a/Source/platform/graphics/gpu/Extensions3DUtil.cpp b/Source/platform/graphics/gpu/Extensions3DUtil.cpp
index 7acdec3e35d99c5d5554de3f4d0219c0fe09ac0f..3d66b44fa402c6a8b59bbbe0745af7c43cd75795 100644
--- a/Source/platform/graphics/gpu/Extensions3DUtil.cpp
+++ b/Source/platform/graphics/gpu/Extensions3DUtil.cpp
@@ -23,7 +23,7 @@ void splitStringHelper(const String& str, HashSet<String>& set)
} // anonymous namespace
-PassOwnPtr<Extensions3DUtil> Extensions3DUtil::create(blink::WebGraphicsContext3D* context)
+PassOwnPtr<Extensions3DUtil> Extensions3DUtil::create(WebGraphicsContext3D* context)
{
OwnPtr<Extensions3DUtil> out = adoptPtr(new Extensions3DUtil(context));
if (!out->initializeExtensions())
@@ -31,7 +31,7 @@ PassOwnPtr<Extensions3DUtil> Extensions3DUtil::create(blink::WebGraphicsContext3
return out.release();
}
-Extensions3DUtil::Extensions3DUtil(blink::WebGraphicsContext3D* context)
+Extensions3DUtil::Extensions3DUtil(WebGraphicsContext3D* context)
: m_context(context)
{
}
« no previous file with comments | « Source/platform/graphics/gpu/Extensions3DUtil.h ('k') | Source/platform/graphics/gpu/WebGLImageBufferSurface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698