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

Unified Diff: Source/devtools/front_end/sources/BreakpointsSidebarPane.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
Index: Source/devtools/front_end/sources/BreakpointsSidebarPane.js
diff --git a/Source/devtools/front_end/sources/BreakpointsSidebarPane.js b/Source/devtools/front_end/sources/BreakpointsSidebarPane.js
index 16e0f39d0fa61648a86379fb8e7886e3f1919e7b..79f5596fcf89e17835af5ebd54feb25ecd6d6bb3 100644
--- a/Source/devtools/front_end/sources/BreakpointsSidebarPane.js
+++ b/Source/devtools/front_end/sources/BreakpointsSidebarPane.js
@@ -25,9 +25,10 @@
/**
* @constructor
+ * @extends {WebInspector.SidebarPane}
* @param {!WebInspector.DebuggerModel} debuggerModel
* @param {!WebInspector.BreakpointManager} breakpointManager
- * @extends {WebInspector.SidebarPane}
+ * @param {function(!WebInspector.UISourceCode, number=, number=, boolean=)} showSourceLineDelegate
*/
WebInspector.JavaScriptBreakpointsSidebarPane = function(debuggerModel, breakpointManager, showSourceLineDelegate)
{
@@ -183,6 +184,7 @@ WebInspector.JavaScriptBreakpointsSidebarPane.prototype = {
/**
* @param {!WebInspector.BreakpointManager.Breakpoint} breakpoint
+ * @param {?Event} event
*/
_breakpointCheckboxClicked: function(breakpoint, event)
{
@@ -193,6 +195,7 @@ WebInspector.JavaScriptBreakpointsSidebarPane.prototype = {
/**
* @param {!WebInspector.BreakpointManager.Breakpoint} breakpoint
+ * @param {?Event} event
*/
_breakpointContextMenu: function(breakpoint, event)
{

Powered by Google App Engine
This is Rietveld 408576698