| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/script-snippet-model.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/script-snippet-model.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/script-snippet-model.html
|
| index 4f2a1bdc762a49d0e4fa3eb8a095f8f0f9ee9400..0c949ff485d0979e9cd64d74bbbde1fa51c58ea0 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/script-snippet-model.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/script-snippet-model.html
|
| @@ -24,7 +24,7 @@ function test()
|
| InspectorTest.assertEquals(snippetId, WebInspector.scriptSnippetModel._snippetIdForSourceURL(evaluationSourceURL), "Snippet can not be identified by its evaluation sourceURL.");
|
|
|
|
|
| - function dumpResult(target, result, wasThrown)
|
| + function dumpResult(target, result)
|
| {
|
| InspectorTest.addResult("Snippet execution result: " + result.description);
|
| callback();
|
| @@ -230,7 +230,7 @@ function test()
|
| InspectorTest.addSniffer(WebInspector.ScriptSnippetModel.prototype, "_printRunScriptResult", snippetFinished);
|
| WebInspector.scriptSnippetModel.evaluateScriptSnippet(WebInspector.context.flavor(WebInspector.ExecutionContext), uiSourceCode);
|
|
|
| - function snippetFinished(result, wasThrown)
|
| + function snippetFinished(result)
|
| {
|
| var script = snippetScriptMapping._scriptForUISourceCode.get(uiSourceCode);
|
| InspectorTest.addResult("Snippet execution result: " + result.description);
|
|
|