| OLD | NEW |
| 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 Loading... |
| 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 }; |
| OLD | NEW |