| Index: Source/bindings/core/v8/custom/V8WebGLRenderingContextCustom.cpp
|
| diff --git a/Source/bindings/core/v8/custom/V8WebGLRenderingContextCustom.cpp b/Source/bindings/core/v8/custom/V8WebGLRenderingContextCustom.cpp
|
| index 01e5dde81bffa3f8d731fe7c2b93072a9f033770..d1e4ba1e343c25d11e70ee71270bc433e111dee6 100644
|
| --- a/Source/bindings/core/v8/custom/V8WebGLRenderingContextCustom.cpp
|
| +++ b/Source/bindings/core/v8/custom/V8WebGLRenderingContextCustom.cpp
|
| @@ -343,7 +343,7 @@ void V8WebGLRenderingContext::getExtensionMethodCustom(const v8::FunctionCallbac
|
| return;
|
| }
|
| TOSTRING_VOID(V8StringResource<>, name, info[0]);
|
| - RefPtr<WebGLExtension> extension(impl->getExtension(name));
|
| + RefPtrWillBeRawPtr<WebGLExtension> extension(impl->getExtension(name));
|
| v8SetReturnValue(info, toV8Object(extension.get(), info.Holder(), info.GetIsolate()));
|
| }
|
|
|
|
|