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

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

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.h
diff --git a/Source/platform/graphics/gpu/Extensions3DUtil.h b/Source/platform/graphics/gpu/Extensions3DUtil.h
index 0039c42e3eef750d8fbdb05abc7e70e1c7bdf547..0dbc61b51a541bd737179673c0d8c5cbf70981dd 100644
--- a/Source/platform/graphics/gpu/Extensions3DUtil.h
+++ b/Source/platform/graphics/gpu/Extensions3DUtil.h
@@ -13,15 +13,13 @@
#include "wtf/text/WTFString.h"
namespace blink {
-class WebGraphicsContext3D;
-}
-namespace blink {
+class WebGraphicsContext3D;
class PLATFORM_EXPORT Extensions3DUtil {
public:
// Creates a new Extensions3DUtil. If the passed WebGraphicsContext3D has been spontaneously lost, returns null.
- static PassOwnPtr<Extensions3DUtil> create(blink::WebGraphicsContext3D*);
+ static PassOwnPtr<Extensions3DUtil> create(WebGraphicsContext3D*);
~Extensions3DUtil();
bool supportsExtension(const String& name);
@@ -31,10 +29,10 @@ public:
static bool canUseCopyTextureCHROMIUM(GLenum destFormat, GLenum destType, GLint level);
private:
- Extensions3DUtil(blink::WebGraphicsContext3D*);
+ Extensions3DUtil(WebGraphicsContext3D*);
bool initializeExtensions();
- blink::WebGraphicsContext3D* m_context;
+ WebGraphicsContext3D* m_context;
HashSet<String> m_enabledExtensions;
HashSet<String> m_requestableExtensions;
};
« no previous file with comments | « Source/platform/graphics/gpu/DrawingBufferTest.cpp ('k') | Source/platform/graphics/gpu/Extensions3DUtil.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698