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

Unified Diff: Source/devtools/front_end/accessibility/AccessibilitySidebarView.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/devtools.gypi ('k') | Source/devtools/front_end/audits/AuditsPanel.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/accessibility/AccessibilitySidebarView.js
diff --git a/Source/devtools/front_end/accessibility/AccessibilitySidebarView.js b/Source/devtools/front_end/accessibility/AccessibilitySidebarView.js
index a2d5bfc7cc15f8922ea2133d380e15eb6d954dc8..f9ebf9a32d97d28928d98114a83837373fe3d21f 100644
--- a/Source/devtools/front_end/accessibility/AccessibilitySidebarView.js
+++ b/Source/devtools/front_end/accessibility/AccessibilitySidebarView.js
@@ -85,7 +85,7 @@ WebInspector.AXNodeSubPane.prototype = {
this._setAXNode(accessibilityNode);
callback();
}
- var node = this.parentView().parentView().node();
+ var node = this.parentWidget().parentWidget().node();
WebInspector.AccessibilityModel.fromTarget(node.target()).getAXNode(node.id, accessibilityNodeCallback.bind(this));
},
@@ -135,7 +135,7 @@ WebInspector.AXNodeSubPane.prototype = {
treeOutline.element.classList.remove("hidden");
this._infoElement.classList.add("hidden");
- var target = this.parentView().parentView().node().target();
+ var target = this.parentWidget().parentWidget().node().target();
this._computedNameElement.removeChildren();
if (axNode.name && axNode.name.value)
« no previous file with comments | « Source/devtools/devtools.gypi ('k') | Source/devtools/front_end/audits/AuditsPanel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698