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

Unified Diff: Source/devtools/front_end/audits/AuditRules.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/SettingsScreen.js ('k') | Source/devtools/front_end/common/DOMExtension.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/audits/AuditRules.js
diff --git a/Source/devtools/front_end/audits/AuditRules.js b/Source/devtools/front_end/audits/AuditRules.js
index 1e863bbc90caaff4fb402e9af1fe5fdc69b95b53..aa61a24f2b61c8926eeb09e31abc9e09596050b6 100644
--- a/Source/devtools/front_end/audits/AuditRules.js
+++ b/Source/devtools/front_end/audits/AuditRules.js
@@ -1034,6 +1034,8 @@ WebInspector.AuditRules.CssInHeadRule.prototype = {
}
/**
+ * @param {!WebInspector.DOMNode} root
+ * @param {!Array.<!DOMAgent.NodeId>=} inlineStyleNodeIds
* @param {!Array.<!DOMAgent.NodeId>=} nodeIds
*/
function externalStylesheetsReceived(root, inlineStyleNodeIds, nodeIds)
@@ -1060,6 +1062,7 @@ WebInspector.AuditRules.CssInHeadRule.prototype = {
}
/**
+ * @param {!WebInspector.DOMNode} root
* @param {!Array.<!DOMAgent.NodeId>=} nodeIds
*/
function inlineStylesReceived(root, nodeIds)
@@ -1072,6 +1075,9 @@ WebInspector.AuditRules.CssInHeadRule.prototype = {
target.domModel.querySelectorAll(root.id, "body link[rel~='stylesheet'][href]", externalStylesheetsReceived.bind(null, root, nodeIds));
}
+ /**
+ * @param {!WebInspector.DOMNode} root
+ */
function onDocumentAvailable(root)
{
if (progress.isCanceled())
« no previous file with comments | « Source/devtools/front_end/SettingsScreen.js ('k') | Source/devtools/front_end/common/DOMExtension.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698