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

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

Issue 2384263003: Reflow comments in core/animation and subdirs (Closed)
Patch Set: Created 4 years, 2 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 277ce6e5f259e1c3525907bc85d455c1a7b283ac..8b11d40d2ec2a5fb7ac09d884ef6c821066087aa 100644
--- a/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h
+++ b/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h
@@ -17,8 +17,9 @@ namespace blink {
class StyleResolverState;
-// Represents an animation's effect between an adjacent pair of PropertySpecificKeyframes after converting
-// the keyframes to an internal format with respect to the animation environment and underlying values.
+// Represents an animation's effect between an adjacent pair of
+// PropertySpecificKeyframes after converting the keyframes to an internal
+// format with respect to the animation environment and underlying values.
class PrimitiveInterpolation {
USING_FAST_MALLOC(PrimitiveInterpolation);
WTF_MAKE_NONCOPYABLE(PrimitiveInterpolation);
@@ -38,7 +39,8 @@ class PrimitiveInterpolation {
PrimitiveInterpolation() {}
};
-// Represents a pair of keyframes that are compatible for "smooth" interpolation eg. "0px" and "100px".
+// Represents a pair of keyframes that are compatible for "smooth" interpolation
+// eg. "0px" and "100px".
class PairwisePrimitiveInterpolation : public PrimitiveInterpolation {
public:
~PairwisePrimitiveInterpolation() override {}
@@ -96,7 +98,8 @@ class PairwisePrimitiveInterpolation : public PrimitiveInterpolation {
RefPtr<NonInterpolableValue> m_nonInterpolableValue;
};
-// Represents a pair of incompatible keyframes that fall back to 50% flip behaviour eg. "auto" and "0px".
+// Represents a pair of incompatible keyframes that fall back to 50% flip
+// behaviour eg. "auto" and "0px".
class FlipPrimitiveInterpolation : public PrimitiveInterpolation {
public:
~FlipPrimitiveInterpolation() override {}

Powered by Google App Engine
This is Rietveld 408576698