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

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

Issue 1773813007: blink: Rename modules/ method to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-modules: rebase-fixes Created 4 years, 9 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 daee556c1678f22f8cb9b733ec403e17c6fe7e30..0a9ceba63e2b79fc3575dcde39273e591aa22f2e 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXImageMapLink.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXImageMapLink.cpp
@@ -91,7 +91,7 @@ Element* AXImageMapLink::actionElement() const
Element* AXImageMapLink::anchorElement() const
{
- return node() ? toElement(node()) : nullptr;
+ return getNode() ? toElement(getNode()) : nullptr;
}
KURL AXImageMapLink::url() const
@@ -111,7 +111,7 @@ LayoutRect AXImageMapLink::elementRect() const
LayoutObject* layoutObject;
if (m_parent && m_parent->isAXLayoutObject())
- layoutObject = toAXLayoutObject(m_parent)->layoutObject();
+ layoutObject = toAXLayoutObject(m_parent)->getLayoutObject();
else
layoutObject = map->layoutObject();

Powered by Google App Engine
This is Rietveld 408576698