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

Unified Diff: Source/devtools/front_end/ui/treeoutline.js

Issue 1113813002: [DevTools] Rename View to Widget. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 5 years, 8 months 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
« no previous file with comments | « Source/devtools/front_end/ui/splitWidget.css ('k') | Source/devtools/front_end/ui_lazy/DataGrid.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/ui/treeoutline.js
diff --git a/Source/devtools/front_end/ui/treeoutline.js b/Source/devtools/front_end/ui/treeoutline.js
index 467d8b26afbb12b967c25b4887d77971eb001ee7..0eada851425a9fee0f4f076b0fce586f2a0d9617 100644
--- a/Source/devtools/front_end/ui/treeoutline.js
+++ b/Source/devtools/front_end/ui/treeoutline.js
@@ -279,7 +279,7 @@ function TreeOutlineInShadow(className)
this.element = createElement("div");
this._shadowRoot = this.element.createShadowRoot();
- this._shadowRoot.appendChild(WebInspector.View.createStyleElement("ui/treeoutline.css"));
+ this._shadowRoot.appendChild(WebInspector.Widget.createStyleElement("ui/treeoutline.css"));
this._shadowRoot.appendChild(innerElement);
WebInspector.installComponentRootStyles(innerElement);
this._renderSelection = true;
@@ -291,7 +291,7 @@ TreeOutlineInShadow.prototype = {
*/
registerRequiredCSS: function(cssFile)
{
- this._shadowRoot.appendChild(WebInspector.View.createStyleElement(cssFile));
+ this._shadowRoot.appendChild(WebInspector.Widget.createStyleElement(cssFile));
},
__proto__: TreeOutline.prototype
« no previous file with comments | « Source/devtools/front_end/ui/splitWidget.css ('k') | Source/devtools/front_end/ui_lazy/DataGrid.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698