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

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

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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/AXTableCell.cpp ('k') | Source/modules/accessibility/AXTableRow.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXTableColumn.cpp
diff --git a/Source/modules/accessibility/AXTableColumn.cpp b/Source/modules/accessibility/AXTableColumn.cpp
index 3e23310bb28a1dd7b4eb2b79b1776415d975b3d5..556b19919c7dc4cba15e26d1a08e76979f028084 100644
--- a/Source/modules/accessibility/AXTableColumn.cpp
+++ b/Source/modules/accessibility/AXTableColumn.cpp
@@ -71,7 +71,7 @@ void AXTableColumn::headerObjectsForColumn(AccessibilityChildrenVector& headers)
if (!m_parent)
return;
- RenderObject* renderer = m_parent->renderer();
+ LayoutObject* renderer = m_parent->renderer();
if (!renderer)
return;
@@ -121,7 +121,7 @@ AXObject* AXTableColumn::headerObject()
if (!m_parent)
return 0;
- RenderObject* renderer = m_parent->renderer();
+ LayoutObject* renderer = m_parent->renderer();
if (!renderer)
return 0;
« no previous file with comments | « Source/modules/accessibility/AXTableCell.cpp ('k') | Source/modules/accessibility/AXTableRow.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698