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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXTable.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/AXTable.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXTable.cpp b/third_party/WebKit/Source/modules/accessibility/AXTable.cpp
index ce598f4e3b2e1941262ce15f35d13d5b65eb300c..79b6ea7a3de1b0f72ed3e00acc1269e24a59628b 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXTable.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXTable.cpp
@@ -100,7 +100,7 @@ static bool elementHasAriaRole(const Element* element)
bool AXTable::isDataTable() const
{
- if (!m_layoutObject || !node())
+ if (!m_layoutObject || !getNode())
return false;
// Do not consider it a data table if it has an ARIA role.
@@ -110,7 +110,7 @@ bool AXTable::isDataTable() const
// When a section of the document is contentEditable, all tables should be
// treated as data tables, otherwise users may not be able to work with rich
// text editors that allow creating and editing tables.
- if (node() && node()->hasEditableStyle())
+ if (getNode() && getNode()->hasEditableStyle())
return true;
// This employs a heuristic to determine if this table should appear.

Powered by Google App Engine
This is Rietveld 408576698