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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/Script.js

Issue 2146333003: [DevTools] Replace SetScriptSourceError with ExceptionDetails in protocol (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: a Created 4 years, 5 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/Source/devtools/front_end/sdk/Script.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/Script.js b/third_party/WebKit/Source/devtools/front_end/sdk/Script.js
index 540c494c407083530ffa7dbf845b27852de2dcaa..2e91baca71521197080ab9a35f26e38a67655e46 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/Script.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/Script.js
@@ -218,7 +218,7 @@ WebInspector.Script.prototype = {
/**
* @param {string} newSource
- * @param {function(?Protocol.Error, !DebuggerAgent.SetScriptSourceError=, !Array.<!DebuggerAgent.CallFrame>=, !RuntimeAgent.StackTrace=, boolean=)} callback
+ * @param {function(?Protocol.Error, !RuntimeAgent.ExceptionDetails=, !Array.<!DebuggerAgent.CallFrame>=, !RuntimeAgent.StackTrace=, boolean=)} callback
*/
editSource: function(newSource, callback)
{
@@ -228,7 +228,7 @@ WebInspector.Script.prototype = {
* @param {!Array.<!DebuggerAgent.CallFrame>=} callFrames
* @param {boolean=} stackChanged
* @param {!RuntimeAgent.StackTrace=} asyncStackTrace
- * @param {!DebuggerAgent.SetScriptSourceError=} compileError
+ * @param {!RuntimeAgent.ExceptionDetails=} compileError
*/
function didEditScriptSource(error, callFrames, stackChanged, asyncStackTrace, compileError)
{

Powered by Google App Engine
This is Rietveld 408576698