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

Unified Diff: third_party/WebKit/Source/core/animation/SampledEffect.cpp

Issue 1780603002: blink: Rename bindings/ methods to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-bindings: rebase 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/core/animation/SampledEffect.cpp
diff --git a/third_party/WebKit/Source/core/animation/SampledEffect.cpp b/third_party/WebKit/Source/core/animation/SampledEffect.cpp
index 91241350167ef4510802a8cb4918cb84e2f69d2d..f2477ee0d6c8dde7fcf8a5e4745021d72c1c231c 100644
--- a/third_party/WebKit/Source/core/animation/SampledEffect.cpp
+++ b/third_party/WebKit/Source/core/animation/SampledEffect.cpp
@@ -28,7 +28,7 @@ void SampledEffect::removeReplacedInterpolations(const HashSet<PropertyHandle>&
{
size_t newSize = 0;
for (auto& interpolation : m_interpolations) {
- if (!replacedProperties.contains(interpolation->property()))
+ if (!replacedProperties.contains(interpolation->getProperty()))
m_interpolations[newSize++].swap(interpolation);
}
m_interpolations.shrink(newSize);
@@ -38,7 +38,7 @@ void SampledEffect::updateReplacedProperties(HashSet<PropertyHandle>& replacedPr
{
for (const auto& interpolation : m_interpolations) {
if (!interpolation->dependsOnUnderlyingValue())
- replacedProperties.add(interpolation->property());
+ replacedProperties.add(interpolation->getProperty());
}
}

Powered by Google App Engine
This is Rietveld 408576698