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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/StackView.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/ui/StackView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/StackView.js b/third_party/WebKit/Source/devtools/front_end/ui/StackView.js
index 6d87bf1faf0ea06df4bb51e77181368f55dbcb7c..55ba9daba5251d0a8efcb5a8ac45e7d03a7787c5 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/StackView.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/StackView.js
@@ -29,7 +29,7 @@
/**
* @unrestricted
*/
-WebInspector.StackView = class extends WebInspector.VBox {
+UI.StackView = class extends UI.VBox {
/**
* @param {boolean} isVertical
*/
@@ -40,14 +40,14 @@ WebInspector.StackView = class extends WebInspector.VBox {
}
/**
- * @param {!WebInspector.Widget} view
+ * @param {!UI.Widget} view
* @param {string=} sidebarSizeSettingName
* @param {number=} defaultSidebarWidth
* @param {number=} defaultSidebarHeight
- * @return {?WebInspector.SplitWidget}
+ * @return {?UI.SplitWidget}
*/
appendView(view, sidebarSizeSettingName, defaultSidebarWidth, defaultSidebarHeight) {
- var splitWidget = new WebInspector.SplitWidget(
+ var splitWidget = new UI.SplitWidget(
this._isVertical, true, sidebarSizeSettingName, defaultSidebarWidth, defaultSidebarHeight);
splitWidget.setMainWidget(view);
splitWidget.hideSidebar();

Powered by Google App Engine
This is Rietveld 408576698