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

Unified Diff: Source/devtools/front_end/profiler/HeapSnapshotGridNodes.js

Issue 308643003: DevTools: [JSDoc] Avoid partial arg list annotations in the "profiler" module (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
Index: Source/devtools/front_end/profiler/HeapSnapshotGridNodes.js
diff --git a/Source/devtools/front_end/profiler/HeapSnapshotGridNodes.js b/Source/devtools/front_end/profiler/HeapSnapshotGridNodes.js
index 887af857f1bd2e3b311346318c353c978ebfbbf5..3a2223f1fbd2f44c3b771480b64abc640eccd6c8 100644
--- a/Source/devtools/front_end/profiler/HeapSnapshotGridNodes.js
+++ b/Source/devtools/front_end/profiler/HeapSnapshotGridNodes.js
@@ -492,6 +492,7 @@ WebInspector.HeapSnapshotGridNode.prototype = {
* @constructor
* @extends {WebInspector.HeapSnapshotGridNode}
* @param {!WebInspector.HeapSnapshotSortableDataGrid} dataGrid
+ * @param {!WebInspector.HeapSnapshotCommon.Node} node
*/
WebInspector.HeapSnapshotGenericObjectNode = function(dataGrid, node)
{
@@ -907,6 +908,7 @@ WebInspector.HeapSnapshotRetainingObjectNode.prototype = {
* @extends {WebInspector.HeapSnapshotGenericObjectNode}
* @param {!WebInspector.HeapSnapshotSortableDataGrid} dataGrid
* @param {!WebInspector.HeapSnapshotProxy} snapshot
+ * @param {!WebInspector.HeapSnapshotCommon.Node} node
* @param {boolean} isDeletedNode
*/
WebInspector.HeapSnapshotInstanceNode = function(dataGrid, snapshot, node, isDeletedNode)
@@ -1164,6 +1166,8 @@ WebInspector.HeapSnapshotConstructorNode.prototype = {
* @implements {WebInspector.HeapSnapshotGridNode.ChildrenProvider}
* @param {!WebInspector.HeapSnapshotProviderProxy} addedNodesProvider
* @param {!WebInspector.HeapSnapshotProviderProxy} deletedNodesProvider
+ * @param {number} addedCount
+ * @param {number} removedCount
*/
WebInspector.HeapSnapshotDiffNodesProvider = function(addedNodesProvider, deletedNodesProvider, addedCount, removedCount)
{
@@ -1406,6 +1410,7 @@ WebInspector.HeapSnapshotDiffNode.prototype = {
* @constructor
* @extends {WebInspector.HeapSnapshotGenericObjectNode}
* @param {!WebInspector.HeapSnapshotSortableDataGrid} dataGrid
+ * @param {!WebInspector.HeapSnapshotCommon.Node} node
*/
WebInspector.HeapSnapshotDominatorObjectNode = function(dataGrid, node)
{
« no previous file with comments | « Source/devtools/front_end/profiler/HeapSnapshotDataGrids.js ('k') | Source/devtools/front_end/profiler/HeapSnapshotProxy.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698