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

Unified Diff: Source/bindings/v8/custom/V8DocumentCustom.cpp

Issue 304223007: Use auto-rethrowing v8::TryCatch variant (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: make constructors explicit Created 6 years, 7 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
« no previous file with comments | « Source/bindings/v8/V8BindingMacros.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/v8/custom/V8DocumentCustom.cpp
diff --git a/Source/bindings/v8/custom/V8DocumentCustom.cpp b/Source/bindings/v8/custom/V8DocumentCustom.cpp
index fcf60021ebac6970a3d35d7b4faaad660684f808..4248ff3b33ed9c5e1129041665b24f9e6e1dd35e 100644
--- a/Source/bindings/v8/custom/V8DocumentCustom.cpp
+++ b/Source/bindings/v8/custom/V8DocumentCustom.cpp
@@ -97,7 +97,7 @@ void V8Document::createEventMethodCustom(const v8::FunctionCallbackInfo<v8::Valu
Document* impl = V8Document::toNative(info.Holder());
V8StringResource<> eventType;
{
- TOSTRING_VOID_INTERNAL_NOTRYCATCH(eventType, info[0]);
+ TOSTRING_VOID_INTERNAL(eventType, info[0]);
}
RefPtrWillBeRawPtr<Event> result = createEventModules(eventType, exceptionState);
if (exceptionState.hadException()) {
« no previous file with comments | « Source/bindings/v8/V8BindingMacros.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698