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

Unified Diff: Source/devtools/front_end/sdk/DOMModel.js

Issue 301163005: DevTools: [JSDoc] Avoid partial arg list annotations in code except "profiler" module (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 7 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
« no previous file with comments | « Source/devtools/front_end/sdk/CSSStyleModel.js ('k') | Source/devtools/front_end/sdk/Database.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/sdk/DOMModel.js
diff --git a/Source/devtools/front_end/sdk/DOMModel.js b/Source/devtools/front_end/sdk/DOMModel.js
index 0bba47e0ab3e7cf8c87e3232cde728f044c99a7d..12a74aac33c9d597a349024810ffdf89f40ddb52 100644
--- a/Source/devtools/front_end/sdk/DOMModel.js
+++ b/Source/devtools/front_end/sdk/DOMModel.js
@@ -291,7 +291,7 @@ WebInspector.DOMNode.prototype = {
/**
* @param {string} name
- * @param {function(?Protocol.Error)=} callback
+ * @param {function(?Protocol.Error, number)=} callback
*/
setNodeName: function(name, callback)
{
@@ -432,7 +432,7 @@ WebInspector.DOMNode.prototype = {
},
/**
- * @param {function(?Protocol.Error)=} callback
+ * @param {function(?Protocol.Error, string)=} callback
*/
getOuterHTML: function(callback)
{
@@ -1478,9 +1478,9 @@ WebInspector.DOMModel.prototype = {
/**
* @param {!WebInspector.DOMNode} node
- * @param {function(?Protocol.Error, !A=, !B=)=} callback
- * @return {function(?Protocol.Error, !A=, !B=)}
- * @template A,B
+ * @param {function(?Protocol.Error, ...)=} callback
+ * @return {function(...)}
+ * @template T
*/
_markRevision: function(node, callback)
{
« no previous file with comments | « Source/devtools/front_end/sdk/CSSStyleModel.js ('k') | Source/devtools/front_end/sdk/Database.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698