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

Unified Diff: Source/devtools/front_end/components/BreakpointsSidebarPaneBase.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
« no previous file with comments | « Source/devtools/devtools.gypi ('k') | Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/components/BreakpointsSidebarPaneBase.js
diff --git a/Source/devtools/front_end/components/NativeBreakpointsSidebarPane.js b/Source/devtools/front_end/components/BreakpointsSidebarPaneBase.js
similarity index 96%
rename from Source/devtools/front_end/components/NativeBreakpointsSidebarPane.js
rename to Source/devtools/front_end/components/BreakpointsSidebarPaneBase.js
index 0baf374ebf922fe7b2edd1c8a6423da88b481b45..8fe32f699103f6da56794524da16bf656f2f94ef 100644
--- a/Source/devtools/front_end/components/NativeBreakpointsSidebarPane.js
+++ b/Source/devtools/front_end/components/BreakpointsSidebarPaneBase.js
@@ -32,7 +32,7 @@
* @constructor
* @extends {WebInspector.SidebarPane}
*/
-WebInspector.NativeBreakpointsSidebarPane = function(title)
+WebInspector.BreakpointsSidebarPaneBase = function(title)
{
WebInspector.SidebarPane.call(this, title);
this.registerRequiredCSS("components/breakpointsList.css");
@@ -47,7 +47,7 @@ WebInspector.NativeBreakpointsSidebarPane = function(title)
this.bodyElement.appendChild(this.emptyElement);
}
-WebInspector.NativeBreakpointsSidebarPane.prototype = {
+WebInspector.BreakpointsSidebarPaneBase.prototype = {
/**
* @param {!Element} element
* @param {?Node=} beforeNode
« no previous file with comments | « Source/devtools/devtools.gypi ('k') | Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698