X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fbindings%2Fv8%2Fcustom%2FV8HistoryCustom.cpp;h=cf22ff5b56b4f74bf00fdc8bde9bbf4355485a20;hb=004985e17e624662a4c85c76a7654039dc83f028;hp=c29cdbcde4fcecba24e8dcbe9cfd5dda79a10a39;hpb=2f108dbacb161091e42a3479f4e171339b7e7623;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/bindings/v8/custom/V8HistoryCustom.cpp b/src/third_party/WebKit/Source/bindings/v8/custom/V8HistoryCustom.cpp index c29cdbc..cf22ff5 100644 --- a/src/third_party/WebKit/Source/bindings/v8/custom/V8HistoryCustom.cpp +++ b/src/third_party/WebKit/Source/bindings/v8/custom/V8HistoryCustom.cpp @@ -66,8 +66,8 @@ void V8History::pushStateMethodCustom(const v8::FunctionCallbackInfo& if (exceptionState.throwIfNeeded()) return; - V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource, title, info[1]); - V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource, url, argumentOrNull(info, 2)); + TOSTRING_VOID(V8StringResource, title, info[1]); + TOSTRING_VOID(V8StringResource, url, argumentOrNull(info, 2)); History* history = V8History::toNative(info.Holder()); history->stateObjectAdded(historyState.release(), title, url, UpdateBackForwardList, exceptionState); @@ -82,8 +82,8 @@ void V8History::replaceStateMethodCustom(const v8::FunctionCallbackInfo, title, info[1]); - V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource, url, argumentOrNull(info, 2)); + TOSTRING_VOID(V8StringResource, title, info[1]); + TOSTRING_VOID(V8StringResource, url, argumentOrNull(info, 2)); History* history = V8History::toNative(info.Holder()); history->stateObjectAdded(historyState.release(), title, url, DoNotUpdateBackForwardList, exceptionState);