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

Unified Diff: third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h

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/PrimitiveInterpolation.h
diff --git a/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h b/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h
index 6ded4b806e228b7ae47344ccf39ef9e9015f88d1..cc07984c426c85eb0fc542a2efd16fb8be96a1f2 100644
--- a/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h
+++ b/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h
@@ -63,7 +63,7 @@ private:
{
ASSERT(result);
ASSERT(&result->type() == &m_type);
- ASSERT(result->nonInterpolableValue() == m_nonInterpolableValue.get());
+ ASSERT(result->getNonInterpolableValue() == m_nonInterpolableValue.get());
m_start->interpolate(*m_end, fraction, *result->mutableValue().interpolableValue);
}

Powered by Google App Engine
This is Rietveld 408576698