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

Unified Diff: Source/core/html/canvas/OESElementIndexUint.h

Issue 24096029: Moved the majority of WebGL functionality into WebGLRenderingContextBase (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed typo in gypi, was only causing issues on Windows (?!?) Created 6 years, 10 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/core/html/canvas/OESElementIndexUint.h
diff --git a/Source/core/html/canvas/OESElementIndexUint.h b/Source/core/html/canvas/OESElementIndexUint.h
index cd050a4b7e985394e2585d37ad957d8e914ddd71..f11ebd251ee959e6c0afd2d7ac822dee66484c2d 100644
--- a/Source/core/html/canvas/OESElementIndexUint.h
+++ b/Source/core/html/canvas/OESElementIndexUint.h
@@ -34,15 +34,15 @@ namespace WebCore {
class OESElementIndexUint FINAL : public WebGLExtension, public ScriptWrappable {
public:
- static PassRefPtr<OESElementIndexUint> create(WebGLRenderingContext*);
- static bool supported(WebGLRenderingContext*);
+ static PassRefPtr<OESElementIndexUint> create(WebGLRenderingContextBase*);
+ static bool supported(WebGLRenderingContextBase*);
static const char* extensionName();
virtual ~OESElementIndexUint();
- virtual ExtensionName name() const OVERRIDE;
+ virtual WebGLExtensionName name() const OVERRIDE;
private:
- OESElementIndexUint(WebGLRenderingContext*);
+ OESElementIndexUint(WebGLRenderingContextBase*);
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698