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

Unified Diff: third_party/WebKit/Source/devtools/front_end/components/BreakpointsSidebarPaneBase.js

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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: 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);
}

Powered by Google App Engine
This is Rietveld 408576698