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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector-enabled/injected-script-discard.html

Issue 2234983002: [DevTools] Removed wasThrown from evaluate-like protocol methods (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: a Created 4 years, 4 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: third_party/WebKit/LayoutTests/http/tests/inspector-enabled/injected-script-discard.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector-enabled/injected-script-discard.html b/third_party/WebKit/LayoutTests/http/tests/inspector-enabled/injected-script-discard.html
index 8fe5ce8e72571ec6f53b7cef7061c2daa8940b9c..9bc9b9804b61295131eebc0bc4268759dde10e0c 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector-enabled/injected-script-discard.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector-enabled/injected-script-discard.html
@@ -27,7 +27,7 @@ function test()
{
InspectorTest.RuntimeAgent.evaluate("window.objectId", dispatch);
- function dispatch(error, result, wasThrown)
+ function dispatch(error, result, exceptionDetails)
{
if (result.type !== "string") {
InspectorTest.evaluateInPage("console.log('Opening front-end for the first time')");
@@ -42,7 +42,7 @@ function test()
{
InspectorTest.RuntimeAgent.evaluate("({ handle : \"handle\" })", storeIdInTargetWindow);
- function storeIdInTargetWindow(error, result, wasThrown)
+ function storeIdInTargetWindow(error, result, exceptionDetails)
{
checkHandleInInjectedScript(result.objectId, reopenInspector);

Powered by Google App Engine
This is Rietveld 408576698