| Index: Source/core/html/canvas/OESTextureFloat.cpp
|
| diff --git a/Source/core/html/canvas/OESTextureFloat.cpp b/Source/core/html/canvas/OESTextureFloat.cpp
|
| index 8c8de309e8fb65be71e166b5a6df0bb702bec465..9944c21bc90da0a5524b3277db9358c705f9f510 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)
|
|
|