Commit 86f47352 authored by apavlov@chromium.org's avatar apavlov@chromium.org

DevTools: [JSDoc] Fix invalid @param and @return annotations

TBR=vsevik

Review URL: https://codereview.chromium.org/315223002

git-svn-id: svn://svn.chromium.org/blink/trunk@175572 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 76c3616e
......@@ -514,7 +514,7 @@ WebInspector.ScreencastView.prototype = {
/**
* @param {!Event} event
* @return number
* @return {number}
*/
_modifiersForEvent: function(event)
{
......
......@@ -2489,7 +2489,7 @@ WebInspector.NetworkDataGridNode.prototype = {
},
/**
* @param array {?Array}
* @param {?Array} array
* @return {string}
*/
_arrayLength: function(array)
......
......@@ -1124,7 +1124,7 @@ WebInspector.HeapSnapshot.prototype = {
{
/**
* @param {!WebInspector.HeapSnapshotNode} node
* @return boolean
* @return {boolean}
*/
function nodeIdFilter(node)
{
......@@ -1148,7 +1148,7 @@ WebInspector.HeapSnapshot.prototype = {
set[traceIds[i]] = true;
/**
* @param {!WebInspector.HeapSnapshotNode} node
* @return boolean
* @return {boolean}
*/
function traceIdFilter(node)
{
......
......@@ -245,7 +245,7 @@ WebInspector.TargetManager.prototype = {
/**
* @this {WebInspector.TargetManager}
* @param newTarget
* @param {!WebInspector.Target} newTarget
*/
function callbackWrapper(newTarget)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment