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

Unified Diff: public/web/WebDocument.h

Issue 23726007: Remove old accessibility enums, finish renaming public interface. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove unnecessary include Created 7 years, 4 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: public/web/WebDocument.h
diff --git a/public/web/WebDocument.h b/public/web/WebDocument.h
index 2dac12ef5d380e170d25a14b7d92980a789b2ccc..f75a1e7447a78de27b48ad8945ba01cd4bcd579b 100644
--- a/public/web/WebDocument.h
+++ b/public/web/WebDocument.h
@@ -52,7 +52,7 @@ template <class T> class Handle;
}
namespace WebKit {
-class WebAccessibilityObject;
+class WebAXObject;
class WebDocumentType;
class WebElement;
class WebFormElement;
@@ -124,10 +124,10 @@ public:
// the documents on the page.
// Gets the accessibility object for this document.
- WEBKIT_EXPORT WebAccessibilityObject accessibilityObject() const;
+ WEBKIT_EXPORT WebAXObject accessibilityObject() const;
// Gets the accessibility object for an object on this page by ID.
- WEBKIT_EXPORT WebAccessibilityObject accessibilityObjectFromID(int axID) const;
+ WEBKIT_EXPORT WebAXObject accessibilityObjectFromID(int axID) const;
// Inserts the given CSS source code as a user stylesheet in the document.
// Meant for programatic/one-off injection, as opposed to
// WebView::addUserStyleSheet which inserts styles for the lifetime of the

Powered by Google App Engine
This is Rietveld 408576698