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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXMenuListOption.h

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/AXMenuListOption.h
diff --git a/third_party/WebKit/Source/modules/accessibility/AXMenuListOption.h b/third_party/WebKit/Source/modules/accessibility/AXMenuListOption.h
index 2ca40f3c14fd6d79ac7d80e75cfe97c69475fb9f..466cfff4101e27bdf58c40d928eba07d04b50a53 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXMenuListOption.h
+++ b/third_party/WebKit/Source/modules/accessibility/AXMenuListOption.h
@@ -44,7 +44,7 @@ private:
bool isMenuListOption() const override { return true; }
- Node* node() const override { return m_element; }
+ Node* getNode() const override { return m_element; }
void detach() override;
bool isDetached() const override { return !m_element; }
AccessibilityRole roleValue() const override;

Powered by Google App Engine
This is Rietveld 408576698