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

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

Issue 907983002: Table's columns and rows should not be modified outside. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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/modules/accessibility/AXTable.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXTable.cpp
diff --git a/Source/modules/accessibility/AXTable.cpp b/Source/modules/accessibility/AXTable.cpp
index 78bb2cedf61b59dc275ed1b10b0452f4310bbe89..60d5f9ca6167252f32f5dadb61e0e561dc43dcc3 100644
--- a/Source/modules/accessibility/AXTable.cpp
+++ b/Source/modules/accessibility/AXTable.cpp
@@ -449,14 +449,14 @@ AXObject* AXTable::headerContainer()
return m_headerContainer.get();
}
-AXObject::AccessibilityChildrenVector& AXTable::columns()
+const AXObject::AccessibilityChildrenVector& AXTable::columns()
{
updateChildrenIfNecessary();
return m_columns;
}
-AXObject::AccessibilityChildrenVector& AXTable::rows()
+const AXObject::AccessibilityChildrenVector& AXTable::rows()
{
updateChildrenIfNecessary();
« no previous file with comments | « Source/modules/accessibility/AXTable.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698