| Index: third_party/WebKit/Source/core/animation/CompositorAnimations.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CompositorAnimations.cpp b/third_party/WebKit/Source/core/animation/CompositorAnimations.cpp
|
| index fc408fbb95abdc1fa952c8f72f4223c3cdb397d3..745fd620199c57ab0c31cec2bb904454bd76217c 100644
|
| --- a/third_party/WebKit/Source/core/animation/CompositorAnimations.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CompositorAnimations.cpp
|
| @@ -251,7 +251,8 @@ bool CompositorAnimations::isCandidateForAnimationOnCompositor(
|
| keyframeEffect.getPropertySpecificKeyframes(property);
|
| DCHECK_GE(keyframes.size(), 2U);
|
| for (const auto& keyframe : keyframes) {
|
| - // FIXME: Determine candidacy based on the CSSValue instead of a snapshot AnimatableValue.
|
| + // FIXME: Determine candidacy based on the CSSValue instead of a snapshot
|
| + // AnimatableValue.
|
| bool isNeutralKeyframe =
|
| keyframe->isCSSPropertySpecificKeyframe() &&
|
| !toCSSPropertySpecificKeyframe(keyframe.get())->value() &&
|
| @@ -401,7 +402,8 @@ void CompositorAnimations::pauseAnimationForTestingOnCompositor(
|
| const Animation& animation,
|
| int id,
|
| double pauseTime) {
|
| - // FIXME: canStartAnimationOnCompositor queries compositingState, which is not necessarily up to date.
|
| + // FIXME: canStartAnimationOnCompositor queries compositingState, which is not
|
| + // necessarily up to date.
|
| // https://code.google.com/p/chromium/issues/detail?id=339847
|
| DisableCompositingQueryAsserts disabler;
|
|
|
|
|