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

Unified Diff: Source/modules/accessibility/AXListBox.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/AXListBox.h ('k') | Source/modules/accessibility/AXListBoxOption.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXListBox.cpp
diff --git a/Source/modules/accessibility/AXListBox.cpp b/Source/modules/accessibility/AXListBox.cpp
index 273625027b1a8c7fe3538fc19f8d15fbfffc60c1..90fc94c7111b271b2ffd8a99d584f8c6c5cb5fdf 100644
--- a/Source/modules/accessibility/AXListBox.cpp
+++ b/Source/modules/accessibility/AXListBox.cpp
@@ -37,7 +37,7 @@ namespace blink {
using namespace HTMLNames;
-AXListBox::AXListBox(RenderObject* renderer, AXObjectCacheImpl* axObjectCache)
+AXListBox::AXListBox(LayoutObject* renderer, AXObjectCacheImpl* axObjectCache)
: AXRenderObject(renderer, axObjectCache)
{
}
@@ -46,7 +46,7 @@ AXListBox::~AXListBox()
{
}
-PassRefPtr<AXListBox> AXListBox::create(RenderObject* renderer, AXObjectCacheImpl* axObjectCache)
+PassRefPtr<AXListBox> AXListBox::create(LayoutObject* renderer, AXObjectCacheImpl* axObjectCache)
{
return adoptRef(new AXListBox(renderer, axObjectCache));
}
« no previous file with comments | « Source/modules/accessibility/AXListBox.h ('k') | Source/modules/accessibility/AXListBoxOption.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698