| Index: third_party/WebKit/Source/devtools/front_end/components/BreakpointsSidebarPaneBase.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/components/BreakpointsSidebarPaneBase.js b/third_party/WebKit/Source/devtools/front_end/components/BreakpointsSidebarPaneBase.js
|
| index 21363853e095c58e4ab68f8f115416a3e5deba75..a72bfd46f0d6da005ea85b8da1b8be5f6d8860ce 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/components/BreakpointsSidebarPaneBase.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/components/BreakpointsSidebarPaneBase.js
|
| @@ -30,12 +30,12 @@
|
|
|
| /**
|
| * @constructor
|
| - * @extends {WebInspector.SidebarPane}
|
| + * @extends {WebInspector.View}
|
| * @param {string} title
|
| */
|
| WebInspector.BreakpointsSidebarPaneBase = function(title)
|
| {
|
| - WebInspector.SidebarPane.call(this, title);
|
| + WebInspector.View.call(this, title);
|
| this.registerRequiredCSS("components/breakpointsList.css");
|
|
|
| this.listElement = createElement("ol");
|
| @@ -92,5 +92,5 @@ WebInspector.BreakpointsSidebarPaneBase.prototype = {
|
| }
|
| },
|
|
|
| - __proto__: WebInspector.SidebarPane.prototype
|
| + __proto__: WebInspector.View.prototype
|
| }
|
|
|