| Index: Source/core/html/canvas/EXTBlendMinMax.cpp
|
| diff --git a/Source/core/html/canvas/EXTBlendMinMax.cpp b/Source/core/html/canvas/EXTBlendMinMax.cpp
|
| index e54eb6d7a0936878ba9a4b56eac0f58eb0ca62d9..992ce9e081ffe831e4cacc204687603949df9d1a 100644
|
| --- a/Source/core/html/canvas/EXTBlendMinMax.cpp
|
| +++ b/Source/core/html/canvas/EXTBlendMinMax.cpp
|
| @@ -24,9 +24,9 @@ WebGLExtensionName EXTBlendMinMax::name() const
|
| return EXTBlendMinMaxName;
|
| }
|
|
|
| -PassRefPtr<EXTBlendMinMax> EXTBlendMinMax::create(WebGLRenderingContextBase* context)
|
| +PassRefPtrWillBeRawPtr<EXTBlendMinMax> EXTBlendMinMax::create(WebGLRenderingContextBase* context)
|
| {
|
| - return adoptRef(new EXTBlendMinMax(context));
|
| + return adoptRefWillBeNoop(new EXTBlendMinMax(context));
|
| }
|
|
|
| bool EXTBlendMinMax::supported(WebGLRenderingContextBase* context)
|
|
|