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

Unified Diff: third_party/WebKit/LayoutTests/inspector/runtime/runtime-getProperties.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/inspector/runtime/runtime-getProperties.html
diff --git a/third_party/WebKit/LayoutTests/inspector/runtime/runtime-getProperties.html b/third_party/WebKit/LayoutTests/inspector/runtime/runtime-getProperties.html
index 40485d4d101a7d176ada6a6abc52f75cbf9f847a..390af85cee084d7e7c3c933d498de49854d964cc 100644
--- a/third_party/WebKit/LayoutTests/inspector/runtime/runtime-getProperties.html
+++ b/third_party/WebKit/LayoutTests/inspector/runtime/runtime-getProperties.html
@@ -27,13 +27,13 @@ function test()
InspectorTest.RuntimeAgent.evaluate("object1", step1);
}
- function step1(error, result, wasThrown)
+ function step1(error, result, exceptionDetails)
{
obj1 = InspectorTest.runtimeModel.createRemoteObject(result);
InspectorTest.RuntimeAgent.evaluate("object2", step2);
}
- function step2(error, result, wasThrown)
+ function step2(error, result, exceptionDetails)
{
obj2 = InspectorTest.runtimeModel.createRemoteObject(result);
next();

Powered by Google App Engine
This is Rietveld 408576698