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

Unified Diff: third_party/WebKit/public/web/WebAXObject.h

Issue 1435113003: Make use of new AX name calc in Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix ChromeVox and Automation API tests Created 5 years, 1 month 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/public/web/WebAXObject.h
diff --git a/third_party/WebKit/public/web/WebAXObject.h b/third_party/WebKit/public/web/WebAXObject.h
index ee400f2ff85485cc9fd33224c2ab4d2e9c9026f6..bc4d467ed1df94bfa560908c04e0d4bb2e0d746b 100644
--- a/third_party/WebKit/public/web/WebAXObject.h
+++ b/third_party/WebKit/public/web/WebAXObject.h
@@ -162,26 +162,6 @@ public:
BLINK_EXPORT WebAXTextStyle textStyle() const;
BLINK_EXPORT WebURL url() const;
- // Deprecated text alternative calculation API. All of these will be replaced
- // with the new API, below (under "New text alternative calculation API".
- BLINK_EXPORT WebString deprecatedAccessibilityDescription() const;
- BLINK_EXPORT bool deprecatedAriaDescribedby(WebVector<WebAXObject>& describedbyElements) const;
- BLINK_EXPORT bool deprecatedAriaLabelledby(WebVector<WebAXObject>& labelledbyElements) const;
- BLINK_EXPORT WebString deprecatedHelpText() const;
- BLINK_EXPORT WebString deprecatedPlaceholder() const;
- BLINK_EXPORT WebString deprecatedTitle() const;
- BLINK_EXPORT WebAXObject deprecatedTitleUIElement() const;
-
- // FIXME(dmazzoni): remove these ASAP once Chromium only calls either explicitly-deprecated
- // functions, above, or the new APIs, below.
- BLINK_EXPORT WebString accessibilityDescription() const;
- BLINK_EXPORT bool ariaDescribedby(WebVector<WebAXObject>& describedbyElements) const;
- BLINK_EXPORT bool ariaLabelledby(WebVector<WebAXObject>& labelledbyElements) const;
- BLINK_EXPORT WebString helpText() const;
- BLINK_EXPORT WebString placeholder() const;
- BLINK_EXPORT WebString title() const;
- BLINK_EXPORT WebAXObject titleUIElement() const;
-
// New text alternative calculation API (under development).
// Retrieves the accessible name of the object, an enum indicating where the name

Powered by Google App Engine
This is Rietveld 408576698