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