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

Unified Diff: Source/modules/accessibility/AXARIAGridRow.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/AXARIAGridRow.h ('k') | Source/modules/accessibility/AXImageMapLink.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXARIAGridRow.cpp
diff --git a/Source/modules/accessibility/AXARIAGridRow.cpp b/Source/modules/accessibility/AXARIAGridRow.cpp
index 957bd91741072d95c970b584bcbbc69cf4b955cc..5f86a937d686452eeb25025a86d77b8af893fd69 100644
--- a/Source/modules/accessibility/AXARIAGridRow.cpp
+++ b/Source/modules/accessibility/AXARIAGridRow.cpp
@@ -35,7 +35,7 @@
namespace blink {
-AXARIAGridRow::AXARIAGridRow(RenderObject* renderer, AXObjectCacheImpl* axObjectCache)
+AXARIAGridRow::AXARIAGridRow(LayoutObject* renderer, AXObjectCacheImpl* axObjectCache)
: AXTableRow(renderer, axObjectCache)
{
}
@@ -44,7 +44,7 @@ AXARIAGridRow::~AXARIAGridRow()
{
}
-PassRefPtr<AXARIAGridRow> AXARIAGridRow::create(RenderObject* renderer, AXObjectCacheImpl* axObjectCache)
+PassRefPtr<AXARIAGridRow> AXARIAGridRow::create(LayoutObject* renderer, AXObjectCacheImpl* axObjectCache)
{
return adoptRef(new AXARIAGridRow(renderer, axObjectCache));
}
« no previous file with comments | « Source/modules/accessibility/AXARIAGridRow.h ('k') | Source/modules/accessibility/AXImageMapLink.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698