| Index: Source/modules/webgl/EXTFragDepth.cpp
|
| diff --git a/Source/modules/webgl/EXTFragDepth.cpp b/Source/modules/webgl/EXTFragDepth.cpp
|
| index 594f593d98c77265c0e5318202d5dc0edc2c9394..88a42fe453350e4a5b25b781eba981845859e023 100644
|
| --- a/Source/modules/webgl/EXTFragDepth.cpp
|
| +++ b/Source/modules/webgl/EXTFragDepth.cpp
|
| @@ -44,9 +44,9 @@
|
| return EXTFragDepthName;
|
| }
|
|
|
| -EXTFragDepth* EXTFragDepth::create(WebGLRenderingContextBase* context)
|
| +PassRefPtrWillBeRawPtr<EXTFragDepth> EXTFragDepth::create(WebGLRenderingContextBase* context)
|
| {
|
| - return new EXTFragDepth(context);
|
| + return adoptRefWillBeNoop(new EXTFragDepth(context));
|
| }
|
|
|
| bool EXTFragDepth::supported(WebGLRenderingContextBase* context)
|
|
|