Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(381)

Unified Diff: Source/bindings/tests/results/core/V8TestObject.cpp

Issue 611453002: IDL: Clean up argument conversion error handling (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/bindings/tests/results/core/V8TestObject.cpp
diff --git a/Source/bindings/tests/results/core/V8TestObject.cpp b/Source/bindings/tests/results/core/V8TestObject.cpp
index 3b96f2ac4c4ecb6bf6fce37febb8b3421cf1a2ce..87298836b17007369a4930d579c747320847e931 100644
--- a/Source/bindings/tests/results/core/V8TestObject.cpp
+++ b/Source/bindings/tests/results/core/V8TestObject.cpp
@@ -5650,8 +5650,6 @@ static void voidMethodVoidCallbackFunctionArgMethod(const v8::FunctionCallbackIn
TestObject* impl = V8TestObject::toImpl(info.Holder());
ScriptValue voidCallbackFunctionArg;
{
- v8::TryCatch block;
- V8RethrowTryCatchScope rethrow(block);
voidCallbackFunctionArg = ScriptValue(ScriptState::current(info.GetIsolate()), info[0]);
}
impl->voidMethodVoidCallbackFunctionArg(voidCallbackFunctionArg);
@@ -5673,8 +5671,6 @@ static void voidMethodAnyCallbackFunctionOptionalAnyArgMethod(const v8::Function
TestObject* impl = V8TestObject::toImpl(info.Holder());
ScriptValue anyCallbackFunctionOptionalAnyArgArg;
{
- v8::TryCatch block;
- V8RethrowTryCatchScope rethrow(block);
anyCallbackFunctionOptionalAnyArgArg = ScriptValue(ScriptState::current(info.GetIsolate()), info[0]);
}
impl->voidMethodAnyCallbackFunctionOptionalAnyArg(anyCallbackFunctionOptionalAnyArgArg);
« Source/bindings/scripts/v8_types.py ('K') | « Source/bindings/tests/results/core/V8TestInterface.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698