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

Unified Diff: third_party/WebKit/Source/web/WebAXObject.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/web/WebAXObject.cpp
diff --git a/third_party/WebKit/Source/web/WebAXObject.cpp b/third_party/WebKit/Source/web/WebAXObject.cpp
index ff44de7d9d64802a134fadff237de56943976df8..ca85de8e918953e8013f5a6ad7e3a2385646cc57 100644
--- a/third_party/WebKit/Source/web/WebAXObject.cpp
+++ b/third_party/WebKit/Source/web/WebAXObject.cpp
@@ -123,7 +123,7 @@ int WebAXObject::axID() const
bool WebAXObject::updateLayoutAndCheckValidity()
{
if (!isDetached()) {
- Document* document = m_private->document();
+ Document* document = m_private->getDocument();
if (!document || !document->topDocument().view())
return false;
document->view()->updateAllLifecyclePhases();
@@ -631,7 +631,7 @@ WebRect WebAXObject::boundingBoxRect() const
if (isDetached())
return WebRect();
- ASSERT(isLayoutClean(m_private->document()));
+ ASSERT(isLayoutClean(m_private->getDocument()));
return pixelSnappedIntRect(m_private->elementRect());
}
@@ -923,7 +923,7 @@ void WebAXObject::showContextMenu() const
if (isDetached())
return;
- Node* node = m_private->node();
+ Node* node = m_private->getNode();
if (!node)
return;
@@ -1082,7 +1082,7 @@ WebNode WebAXObject::node() const
if (isDetached())
return WebNode();
- Node* node = m_private->node();
+ Node* node = m_private->getNode();
if (!node)
return WebNode();
@@ -1094,7 +1094,7 @@ WebDocument WebAXObject::document() const
if (isDetached())
return WebDocument();
- Document* document = m_private->document();
+ Document* document = m_private->getDocument();
if (!document)
return WebDocument();
@@ -1106,11 +1106,11 @@ bool WebAXObject::hasComputedStyle() const
if (isDetached())
return false;
- Document* document = m_private->document();
+ Document* document = m_private->getDocument();
if (document)
document->updateLayoutTree();
- Node* node = m_private->node();
+ Node* node = m_private->getNode();
if (!node)
return false;
@@ -1122,11 +1122,11 @@ WebString WebAXObject::computedStyleDisplay() const
if (isDetached())
return WebString();
- Document* document = m_private->document();
+ Document* document = m_private->getDocument();
if (document)
document->updateLayoutTree();
- Node* node = m_private->node();
+ Node* node = m_private->getNode();
if (!node)
return WebString();
« no previous file with comments | « third_party/WebKit/Source/web/SuspendableScriptExecutor.cpp ('k') | third_party/WebKit/Source/web/WebDevToolsFrontendImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698