Index: Source/modules/webgl/EXTsRGB.cpp |
diff --git a/Source/modules/webgl/EXTsRGB.cpp b/Source/modules/webgl/EXTsRGB.cpp |
index f4ac9fe7f09c7d4fca8ea29dbd8c66014f7abed1..8816374568fc17fa865958d4bbf2916d23ab4203 100644 |
--- a/Source/modules/webgl/EXTsRGB.cpp |
+++ b/Source/modules/webgl/EXTsRGB.cpp |
@@ -25,9 +25,9 @@ WebGLExtensionName EXTsRGB::name() const |
return EXTsRGBName; |
} |
-PassRefPtrWillBeRawPtr<EXTsRGB> EXTsRGB::create(WebGLRenderingContextBase* context) |
+EXTsRGB* EXTsRGB::create(WebGLRenderingContextBase* context) |
{ |
- return adoptRefWillBeNoop(new EXTsRGB(context)); |
+ return new EXTsRGB(context); |
} |
bool EXTsRGB::supported(WebGLRenderingContextBase* context) |