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

Unified Diff: Source/bindings/core/v8/custom/V8JavaScriptCallFrameCustom.cpp

Issue 644403003: DevTools: Fix __commandLineAPI is not defined error and remove the with- hack for eval on call fram… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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/core/v8/custom/V8JavaScriptCallFrameCustom.cpp
diff --git a/Source/bindings/core/v8/custom/V8JavaScriptCallFrameCustom.cpp b/Source/bindings/core/v8/custom/V8JavaScriptCallFrameCustom.cpp
index 6039a31279a1fe590ea46eab64512535b7d1acb7..7a87c0dd588cb6ad5f9223691ea23fab9897f68e 100644
--- a/Source/bindings/core/v8/custom/V8JavaScriptCallFrameCustom.cpp
+++ b/Source/bindings/core/v8/custom/V8JavaScriptCallFrameCustom.cpp
@@ -35,13 +35,6 @@
namespace blink {
-void V8JavaScriptCallFrame::evaluateWithExceptionDetailsMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
-{
- JavaScriptCallFrame* impl = V8JavaScriptCallFrame::toImpl(info.Holder());
- String expression = toCoreStringWithUndefinedOrNullCheck(info[0]);
- v8SetReturnValue(info, impl->evaluateWithExceptionDetails(expression));
-}
-
void V8JavaScriptCallFrame::restartMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
{
JavaScriptCallFrame* impl = V8JavaScriptCallFrame::toImpl(info.Holder());

Powered by Google App Engine
This is Rietveld 408576698