| 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 ab57f7478e59df7c2b9c2601279414751f72349d..1f02e3e24f6f9bda5fc624296b5478d90c5c65e0 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/components/BreakpointsSidebarPaneBase.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/components/BreakpointsSidebarPaneBase.js
|
| @@ -31,7 +31,7 @@
|
| /**
|
| * @unrestricted
|
| */
|
| -WebInspector.BreakpointsSidebarPaneBase = class extends WebInspector.VBox {
|
| +Components.BreakpointsSidebarPaneBase = class extends UI.VBox {
|
| constructor() {
|
| super();
|
| this.registerRequiredCSS('components/breakpointsList.css');
|
| @@ -41,7 +41,7 @@ WebInspector.BreakpointsSidebarPaneBase = class extends WebInspector.VBox {
|
|
|
| this.emptyElement = createElement('div');
|
| this.emptyElement.className = 'gray-info-message';
|
| - this.emptyElement.textContent = WebInspector.UIString('No Breakpoints');
|
| + this.emptyElement.textContent = Common.UIString('No Breakpoints');
|
|
|
| this.element.appendChild(this.emptyElement);
|
| }
|
|
|