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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/accessibility/AccessibilitySidebarView.js

Issue 2712513002: DevTools: extract ObjectUI module from Components (Closed)
Patch Set: fix build.gn Created 3 years, 10 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 /** 4 /**
5 * @unrestricted 5 * @unrestricted
6 */ 6 */
7 Accessibility.AccessibilitySidebarView = class extends UI.ThrottledWidget { 7 Accessibility.AccessibilitySidebarView = class extends UI.ThrottledWidget {
8 constructor() { 8 constructor() {
9 super(); 9 super();
10 this._node = null; 10 this._node = null;
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 info.textContent = textContent; 180 info.textContent = textContent;
181 return info; 181 return info;
182 } 182 }
183 183
184 /** 184 /**
185 * @return {!UI.TreeOutline} 185 * @return {!UI.TreeOutline}
186 */ 186 */
187 createTreeOutline() { 187 createTreeOutline() {
188 var treeOutline = new UI.TreeOutlineInShadow(); 188 var treeOutline = new UI.TreeOutlineInShadow();
189 treeOutline.registerRequiredCSS('accessibility/accessibilityNode.css'); 189 treeOutline.registerRequiredCSS('accessibility/accessibilityNode.css');
190 treeOutline.registerRequiredCSS('components/objectValue.css'); 190 treeOutline.registerRequiredCSS('object_ui/objectValue.css');
191 191
192 treeOutline.element.classList.add('hidden'); 192 treeOutline.element.classList.add('hidden');
193 this.element.appendChild(treeOutline.element); 193 this.element.appendChild(treeOutline.element);
194 return treeOutline; 194 return treeOutline;
195 } 195 }
196 }; 196 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698