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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXTable.cpp

Issue 2907133002: Move WebAXObject.cpp to core/ (WIP) (Closed)
Patch Set: Created 3 years, 7 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/modules/accessibility/AXTable.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXTable.cpp b/third_party/WebKit/Source/modules/accessibility/AXTable.cpp
index 5f48cfbdf82d9a91393aa951571c09ae83519e8b..bde18ab5713bd25347d1fcd39fc3645cf8d6b776 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXTable.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXTable.cpp
@@ -458,19 +458,19 @@ AXObjectImpl* AXTable::HeaderContainer() {
return header_container_.Get();
}
-const AXObjectImpl::AXObjectVector& AXTable::Columns() {
+const AXObjectImpl::AXObjectImplVector& AXTable::Columns() {
UpdateChildrenIfNecessary();
return columns_;
}
-const AXObjectImpl::AXObjectVector& AXTable::Rows() {
+const AXObjectImpl::AXObjectImplVector& AXTable::Rows() {
UpdateChildrenIfNecessary();
return rows_;
}
-void AXTable::ColumnHeaders(AXObjectVector& headers) {
+void AXTable::ColumnHeaders(AXObjectImplVector& headers) {
if (!layout_object_)
return;
@@ -483,7 +483,7 @@ void AXTable::ColumnHeaders(AXObjectVector& headers) {
}
}
-void AXTable::RowHeaders(AXObjectVector& headers) {
+void AXTable::RowHeaders(AXObjectImplVector& headers) {
if (!layout_object_)
return;

Powered by Google App Engine
This is Rietveld 408576698