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

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

Issue 2436703003: DevTools: Flesh out AccessibilityModel and use SDK objects instead of protocol objects (Closed)
Patch Set: Update edit-aria-attributes to operate on SDK object Created 4 years, 2 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
Index: third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js b/third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js
index d740036c7e4d72f06de3663c4b2e5a092dfcce0a..6a85e60ae71d7549ecb0f272787ecfc464c5beb3 100644
--- a/third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js
+++ b/third_party/WebKit/Source/devtools/front_end/accessibility/ARIAAttributesView.js
@@ -46,14 +46,14 @@ WebInspector.ARIAAttributesPane.prototype = {
/**
* @constructor
- * @extends {WebInspector.AXNodePropertyTreeElement}
+ * @extends {TreeElement}
* @param {!WebInspector.ARIAAttributesPane} parentPane
* @param {!WebInspector.DOMNode.Attribute} attribute
* @param {!WebInspector.Target} target
*/
WebInspector.ARIAAttributesTreeElement = function(parentPane, attribute, target)
{
- WebInspector.AXNodePropertyTreeElement.call(this, target);
+ TreeElement.call(this, "");
this._parentPane = parentPane;
this._attribute = attribute;
@@ -80,7 +80,6 @@ WebInspector.ARIAAttributesTreeElement.prototype = {
},
/**
- * @override
* @param {string} name
*/
appendNameElement: function(name)
@@ -192,7 +191,7 @@ WebInspector.ARIAAttributesTreeElement.prototype = {
}
},
- __proto__: WebInspector.AXNodePropertyTreeElement.prototype
+ __proto__: TreeElement.prototype
};
/**

Powered by Google App Engine
This is Rietveld 408576698