Index: Source/devtools/front_end/extensions/ExtensionPanel.js |
diff --git a/Source/devtools/front_end/extensions/ExtensionPanel.js b/Source/devtools/front_end/extensions/ExtensionPanel.js |
index bb7aa7fd859bd001482aecb9c4a0dce034d4e7e1..74e5918b9741d3dfe5a9142e4f802989064b968d 100644 |
--- a/Source/devtools/front_end/extensions/ExtensionPanel.js |
+++ b/Source/devtools/front_end/extensions/ExtensionPanel.js |
@@ -269,7 +269,7 @@ WebInspector.ExtensionSidebarPane.prototype = { |
* @param {string} title |
* @param {function(?string=)} callback |
* @param {?Protocol.Error} error |
- * @param {!RuntimeAgent.RemoteObject} result |
+ * @param {?WebInspector.RemoteObject} result |
* @param {boolean=} wasThrown |
*/ |
_onEvaluate: function(title, callback, error, result, wasThrown) |
@@ -277,7 +277,7 @@ WebInspector.ExtensionSidebarPane.prototype = { |
if (error) |
callback(error.toString()); |
else |
- this._setObject(WebInspector.runtimeModel.createRemoteObject(result), title, callback); |
+ this._setObject(/** @type {!WebInspector.RemoteObject} */ (result), title, callback); |
}, |
_createObjectPropertiesView: function() |