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

Unified Diff: third_party/WebKit/Source/core/html/shadow/SpinButtonElement.cpp

Issue 2327743002: Rename Node::shadowHost() to Node::ownerShadowHost() (Closed)
Patch Set: fix Created 4 years, 3 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/core/html/shadow/SpinButtonElement.cpp
diff --git a/third_party/WebKit/Source/core/html/shadow/SpinButtonElement.cpp b/third_party/WebKit/Source/core/html/shadow/SpinButtonElement.cpp
index a6c7f4720663ef3ac37d8366fd0d34fe197c9509..2fde53cc6f4717b30c05a2eae801fe3ba781e360 100644
--- a/third_party/WebKit/Source/core/html/shadow/SpinButtonElement.cpp
+++ b/third_party/WebKit/Source/core/html/shadow/SpinButtonElement.cpp
@@ -200,12 +200,12 @@ void SpinButtonElement::releaseCapture(EventDispatch eventDispatch)
bool SpinButtonElement::matchesReadOnlyPseudoClass() const
{
- return shadowHost()->matchesReadOnlyPseudoClass();
+ return ownerShadowHost()->matchesReadOnlyPseudoClass();
}
bool SpinButtonElement::matchesReadWritePseudoClass() const
{
- return shadowHost()->matchesReadWritePseudoClass();
+ return ownerShadowHost()->matchesReadWritePseudoClass();
}
void SpinButtonElement::startRepeatingTimer()

Powered by Google App Engine
This is Rietveld 408576698