Index: Source/bindings/tests/results/V8TestInterface.cpp |
diff --git a/Source/bindings/tests/results/V8TestInterface.cpp b/Source/bindings/tests/results/V8TestInterface.cpp |
index 2b3419aa0b6e7ca92f2d3520c6b9e47cafcf84ac..507a3a0a067c402f46c3b90fde83500fc09b7c26 100644 |
--- a/Source/bindings/tests/results/V8TestInterface.cpp |
+++ b/Source/bindings/tests/results/V8TestInterface.cpp |
@@ -1877,7 +1877,7 @@ bool V8TestInterface::PrivateScript::shortMethodWithShortArgumentImplementedInPr |
v8::TryCatch block; |
v8::Handle<v8::Value> v8Value = PrivateScriptRunner::runDOMMethod(scriptState, "TestInterfaceImplementation", "shortMethodWithShortArgumentImplementedInPrivateScript", holder, 1, argv); |
if (block.HasCaught()) { |
- if (!PrivateScriptRunner::throwDOMExceptionInPrivateScriptIfNeeded(scriptState->isolate(), exceptionState, block.Exception())) { |
+ if (!PrivateScriptRunner::rethrowExceptionInPrivateScript(scriptState->isolate(), exceptionState, block)) { |
// FIXME: We should support more exceptions. |
RELEASE_ASSERT_NOT_REACHED(); |
} |
@@ -1910,7 +1910,7 @@ bool V8TestInterface::PrivateScript::stringAttributeAttributeGetter(LocalFrame* |
v8::TryCatch block; |
v8::Handle<v8::Value> v8Value = PrivateScriptRunner::runDOMAttributeGetter(scriptState, "TestInterfaceImplementation", "stringAttribute", holder); |
if (block.HasCaught()) { |
- if (!PrivateScriptRunner::throwDOMExceptionInPrivateScriptIfNeeded(scriptState->isolate(), exceptionState, block.Exception())) { |
+ if (!PrivateScriptRunner::rethrowExceptionInPrivateScript(scriptState->isolate(), exceptionState, block)) { |
// FIXME: We should support more exceptions. |
RELEASE_ASSERT_NOT_REACHED(); |
} |
@@ -1943,7 +1943,7 @@ bool V8TestInterface::PrivateScript::stringAttributeAttributeSetter(LocalFrame* |
v8::TryCatch block; |
PrivateScriptRunner::runDOMAttributeSetter(scriptState, "TestInterfaceImplementation", "stringAttribute", holder, v8String(scriptState->isolate(), cppValue)); |
if (block.HasCaught()) { |
- if (!PrivateScriptRunner::throwDOMExceptionInPrivateScriptIfNeeded(scriptState->isolate(), exceptionState, block.Exception())) { |
+ if (!PrivateScriptRunner::rethrowExceptionInPrivateScript(scriptState->isolate(), exceptionState, block)) { |
// FIXME: We should support more exceptions. |
RELEASE_ASSERT_NOT_REACHED(); |
} |