| Index: Source/core/html/canvas/OESTextureFloatLinear.cpp
|
| diff --git a/Source/core/html/canvas/OESTextureFloatLinear.cpp b/Source/core/html/canvas/OESTextureFloatLinear.cpp
|
| index 15a7cd356a477c98dbe9d728532edd2b483bde41..8ec14d9922c36d75e4e5d4bea65b5661e0507e9d 100644
|
| --- a/Source/core/html/canvas/OESTextureFloatLinear.cpp
|
| +++ b/Source/core/html/canvas/OESTextureFloatLinear.cpp
|
| @@ -45,9 +45,9 @@ WebGLExtensionName OESTextureFloatLinear::name() const
|
| return OESTextureFloatLinearName;
|
| }
|
|
|
| -PassRefPtr<OESTextureFloatLinear> OESTextureFloatLinear::create(WebGLRenderingContextBase* context)
|
| +PassRefPtrWillBeRawPtr<OESTextureFloatLinear> OESTextureFloatLinear::create(WebGLRenderingContextBase* context)
|
| {
|
| - return adoptRef(new OESTextureFloatLinear(context));
|
| + return adoptRefWillBeNoop(new OESTextureFloatLinear(context));
|
| }
|
|
|
| bool OESTextureFloatLinear::supported(WebGLRenderingContextBase* context)
|
|
|