| Index: Source/core/html/canvas/EXTFragDepth.cpp
|
| diff --git a/Source/core/html/canvas/EXTFragDepth.cpp b/Source/core/html/canvas/EXTFragDepth.cpp
|
| index 80b422a68facde1b04a7a94ee8fa861bd9e30097..5f9e2d9e92536094b3351dd132c5e53399f4199a 100644
|
| --- a/Source/core/html/canvas/EXTFragDepth.cpp
|
| +++ b/Source/core/html/canvas/EXTFragDepth.cpp
|
| @@ -47,9 +47,9 @@ WebGLExtension::ExtensionName EXTFragDepth::getName() const
|
| return EXTFragDepthName;
|
| }
|
|
|
| -PassOwnPtr<EXTFragDepth> EXTFragDepth::create(WebGLRenderingContext* context)
|
| +PassRefPtr<EXTFragDepth> EXTFragDepth::create(WebGLRenderingContext* context)
|
| {
|
| - return adoptPtr(new EXTFragDepth(context));
|
| + return adoptRef(new EXTFragDepth(context));
|
| }
|
|
|
| bool EXTFragDepth::supported(WebGLRenderingContext* context)
|
|
|