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

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

Issue 2604883002: DevTools: namespace globals (Closed)
Patch Set: address CL feedback Created 4 years 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/accessibility/AccessibilitySidebarView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/accessibility/AccessibilitySidebarView.js b/third_party/WebKit/Source/devtools/front_end/accessibility/AccessibilitySidebarView.js
index 56c7d8d078c7320e69e37399c2b466f812b3ca67..bac6c271de99ace88b62b955f4fb92efabca7308 100644
--- a/third_party/WebKit/Source/devtools/front_end/accessibility/AccessibilitySidebarView.js
+++ b/third_party/WebKit/Source/devtools/front_end/accessibility/AccessibilitySidebarView.js
@@ -175,10 +175,10 @@ Accessibility.AccessibilitySubPane = class extends UI.SimpleView {
}
/**
- * @return {!TreeOutline}
+ * @return {!UI.TreeOutline}
*/
createTreeOutline() {
- var treeOutline = new TreeOutlineInShadow();
+ var treeOutline = new UI.TreeOutlineInShadow();
treeOutline.registerRequiredCSS('accessibility/accessibilityNode.css');
treeOutline.registerRequiredCSS('components/objectValue.css');

Powered by Google App Engine
This is Rietveld 408576698