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

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

Issue 2858493002: Rename AXObject to AXObjectImpl in modules/ and web/ (Closed)
Patch Set: Fixed rebase Created 3 years, 7 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/AXImageMapLink.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXImageMapLink.cpp b/third_party/WebKit/Source/modules/accessibility/AXImageMapLink.cpp
index b8bca55ac8655527c38485892b6eb95236cead4a..fcfa4ab73e95cc8bc3eab625185a14d8042de865 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXImageMapLink.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXImageMapLink.cpp
@@ -57,7 +57,7 @@ HTMLMapElement* AXImageMapLink::MapElement() const {
return Traversal<HTMLMapElement>::FirstAncestor(*area);
}
-AXObject* AXImageMapLink::ComputeParent() const {
+AXObjectImpl* AXImageMapLink::ComputeParent() const {
DCHECK(!IsDetached());
if (parent_)
return parent_;
@@ -72,7 +72,7 @@ AccessibilityRole AXImageMapLink::RoleValue() const {
const AtomicString& aria_role =
GetAOMPropertyOrARIAAttribute(AOMStringProperty::kRole);
if (!aria_role.IsEmpty())
- return AXObject::AriaRoleToWebCoreRole(aria_role);
+ return AXObjectImpl::AriaRoleToWebCoreRole(aria_role);
return kLinkRole;
}
@@ -98,7 +98,7 @@ KURL AXImageMapLink::Url() const {
}
void AXImageMapLink::GetRelativeBounds(
- AXObject** out_container,
+ AXObjectImpl** out_container,
FloatRect& out_bounds_in_container,
SkMatrix44& out_container_transform) const {
*out_container = nullptr;

Powered by Google App Engine
This is Rietveld 408576698