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

Unified Diff: Source/modules/accessibility/AXTableRow.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/AXTableRow.h ('k') | Source/platform/graphics/PaintInvalidationReason.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXTableRow.cpp
diff --git a/Source/modules/accessibility/AXTableRow.cpp b/Source/modules/accessibility/AXTableRow.cpp
index 77ef33a03a43a33e9600ee35ccc0d10a652482bb..9fe4024a9e8af1830abf9e49511664e426e3d77b 100644
--- a/Source/modules/accessibility/AXTableRow.cpp
+++ b/Source/modules/accessibility/AXTableRow.cpp
@@ -38,7 +38,7 @@ namespace blink {
using namespace HTMLNames;
-AXTableRow::AXTableRow(RenderObject* renderer, AXObjectCacheImpl* axObjectCache)
+AXTableRow::AXTableRow(LayoutObject* renderer, AXObjectCacheImpl* axObjectCache)
: AXRenderObject(renderer, axObjectCache)
{
}
@@ -47,7 +47,7 @@ AXTableRow::~AXTableRow()
{
}
-PassRefPtr<AXTableRow> AXTableRow::create(RenderObject* renderer, AXObjectCacheImpl* axObjectCache)
+PassRefPtr<AXTableRow> AXTableRow::create(LayoutObject* renderer, AXObjectCacheImpl* axObjectCache)
{
return adoptRef(new AXTableRow(renderer, axObjectCache));
}
@@ -115,7 +115,7 @@ AXObject* AXTableRow::headerObject()
if (!cell->isTableCell())
return 0;
- RenderObject* cellRenderer = toAXTableCell(cell)->renderer();
+ LayoutObject* cellRenderer = toAXTableCell(cell)->renderer();
if (!cellRenderer)
return 0;
« no previous file with comments | « Source/modules/accessibility/AXTableRow.h ('k') | Source/platform/graphics/PaintInvalidationReason.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698