| Index: Source/core/html/canvas/OESTextureFloat.cpp
|
| diff --git a/Source/core/html/canvas/OESTextureFloat.cpp b/Source/core/html/canvas/OESTextureFloat.cpp
|
| index a949e5c54b00e0000f1aabc597ebed419cddd45a..e9f3d1e75c320a09a033260b98c2c4c9eea506a3 100644
|
| --- a/Source/core/html/canvas/OESTextureFloat.cpp
|
| +++ b/Source/core/html/canvas/OESTextureFloat.cpp
|
| @@ -49,9 +49,9 @@ WebGLExtensionName OESTextureFloat::name() const
|
| return OESTextureFloatName;
|
| }
|
|
|
| -PassRefPtr<OESTextureFloat> OESTextureFloat::create(WebGLRenderingContextBase* context)
|
| +PassRefPtrWillBeRawPtr<OESTextureFloat> OESTextureFloat::create(WebGLRenderingContextBase* context)
|
| {
|
| - return adoptRef(new OESTextureFloat(context));
|
| + return adoptRefWillBeNoop(new OESTextureFloat(context));
|
| }
|
|
|
| bool OESTextureFloat::supported(WebGLRenderingContextBase* context)
|
|
|