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

Unified Diff: Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js

Issue 988663002: DevTools: extract classes from BreakpointsSidebarPane.js (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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/components/DOMBreakpointsSidebarPane.js
diff --git a/Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js b/Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js
index 690a208b3363873a3c34f9bcbdb9839dff24339f..1fc7ef65900cb54a895bcdb1beeb41dda1c57e7d 100644
--- a/Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js
+++ b/Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js
@@ -30,11 +30,11 @@
/**
* @constructor
- * @extends {WebInspector.NativeBreakpointsSidebarPane}
+ * @extends {WebInspector.BreakpointsSidebarPaneBase}
*/
WebInspector.DOMBreakpointsSidebarPane = function()
{
- WebInspector.NativeBreakpointsSidebarPane.call(this, WebInspector.UIString("DOM Breakpoints"));
+ WebInspector.BreakpointsSidebarPaneBase.call(this, WebInspector.UIString("DOM Breakpoints"));
this._breakpointElements = {};
@@ -427,7 +427,7 @@ WebInspector.DOMBreakpointsSidebarPane.prototype = {
this._proxies[i].onContentReady();
},
- __proto__: WebInspector.NativeBreakpointsSidebarPane.prototype
+ __proto__: WebInspector.BreakpointsSidebarPaneBase.prototype
}
/**

Powered by Google App Engine
This is Rietveld 408576698