Index: Source/bindings/v8/custom/V8WebGLRenderingContextCustom.cpp |
diff --git a/Source/bindings/v8/custom/V8WebGLRenderingContextCustom.cpp b/Source/bindings/v8/custom/V8WebGLRenderingContextCustom.cpp |
index b5d3bb20d4e62e60ff754ee068e620d1b21373ad..89d4b6c6b6c7454069ab2d062dc55b32e6b058d1 100644 |
--- a/Source/bindings/v8/custom/V8WebGLRenderingContextCustom.cpp |
+++ b/Source/bindings/v8/custom/V8WebGLRenderingContextCustom.cpp |
@@ -358,7 +358,7 @@ void V8WebGLRenderingContext::getExtensionMethodCustom(const v8::FunctionCallbac |
exceptionState.throwIfNeeded(); |
return; |
} |
- V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, name, info[0]); |
+ V8STRINGRESOURCE_PREPARE_VOID(V8StringResource<>, name, info[0]); |
RefPtr<WebGLExtension> extension(impl->getExtension(name)); |
v8SetReturnValue(info, toV8Object(extension.get(), info.Holder(), info.GetIsolate())); |
} |