Commit b4cd5143 authored by allada's avatar allada Committed by Commit bot

[Devtools] Fix closure compiler

Fixes closure compiler error caused by the following patches landing at
once:

https://codereview.chromium.org/2058323002
https://codereview.chromium.org/2181123002

BUG=none

Review-Url: https://codereview.chromium.org/2189733002
Cr-Commit-Position: refs/heads/master@{#408256}
parent 0b2daa32
......@@ -229,13 +229,11 @@ WebInspector.ARIAAttributesPane.ARIAAttributePrompt = function(treeElement)
WebInspector.ARIAAttributesPane.ARIAAttributePrompt.prototype = {
/**
* @param {!Element} proxyElement
* @param {string} text
* @param {number} cursorOffset
* @param {!Range} wordRange
* @param {boolean} force
* @param {function(!Array.<string>, number=)} completionsReadyCallback
*/
_buildPropertyCompletions: function(proxyElement, text, cursorOffset, wordRange, force, completionsReadyCallback)
_buildPropertyCompletions: function(proxyElement, wordRange, force, completionsReadyCallback)
{
// TODO(aboxhall): replace placeholder implementation with real implementation
completionsReadyCallback([], 0);
......
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