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

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

Issue 2287433003: Get rid of remaining uses of AXObject::elementRect (Closed)
Patch Set: Rebase Created 4 years, 3 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/AXTableColumn.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXTableColumn.cpp b/third_party/WebKit/Source/modules/accessibility/AXTableColumn.cpp
index 15d4bb11394f279348e309274d960d85e183441b..21307bea48d91ede716c1306d14c1ad7974c1545 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXTableColumn.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXTableColumn.cpp
@@ -59,12 +59,6 @@ void AXTableColumn::setParent(AXObject* parent)
clearChildren();
}
-LayoutRect AXTableColumn::elementRect() const
-{
- // this will be filled in when addChildren is called
- return m_columnRect;
-}
-
void AXTableColumn::headerObjectsForColumn(AXObjectVector& headers)
{
if (!m_parent)
@@ -156,7 +150,6 @@ void AXTableColumn::addChildren()
continue;
m_children.append(cell);
- m_columnRect.unite(cell->elementRect());
}
}

Powered by Google App Engine
This is Rietveld 408576698