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 |