| 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 e8c05cd5f5e20a0e69b1a02de1229dab5c66ffc5..43ecf449994bb49826afa73cf1c61fcc3856369e 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())); | 
| } | 
|  | 
|  |