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

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

Issue 234403004: Rename V8TRYCATCH_* macros in v8/V8BindingMacros.h (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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/v8/custom/V8ElementCustom.cpp
diff --git a/Source/bindings/v8/custom/V8ElementCustom.cpp b/Source/bindings/v8/custom/V8ElementCustom.cpp
index 17ff2fb2208f5e9c889c4409e42115c3b8ad05a0..4cc9201264b71498e7ace11d0f0be1d47a384df6 100644
--- a/Source/bindings/v8/custom/V8ElementCustom.cpp
+++ b/Source/bindings/v8/custom/V8ElementCustom.cpp
@@ -52,7 +52,7 @@ void V8Element::scrollLeftAttributeSetterCustom(v8::Local<v8::Value> value, cons
return;
}
- V8TRYCATCH_EXCEPTION_VOID(int, position, toInt32(value, exceptionState), exceptionState);
+ V8TRYCATCH_VOID_EXCEPTION(int, position, toInt32(value, exceptionState), exceptionState);
impl->setScrollLeft(position);
}
@@ -68,7 +68,7 @@ void V8Element::scrollTopAttributeSetterCustom(v8::Local<v8::Value> value, const
return;
}
- V8TRYCATCH_EXCEPTION_VOID(int, position, toInt32(value, exceptionState), exceptionState);
+ V8TRYCATCH_VOID_EXCEPTION(int, position, toInt32(value, exceptionState), exceptionState);
impl->setScrollTop(position);
}

Powered by Google App Engine
This is Rietveld 408576698