Index: third_party/WebKit/Source/web/LinkHighlightImpl.cpp |
diff --git a/third_party/WebKit/Source/web/LinkHighlightImpl.cpp b/third_party/WebKit/Source/web/LinkHighlightImpl.cpp |
index b3c31f54f71bc30274e09a73dabd22e6534e5913..8760bee4ccf390b399a314e08c3092c8638fdd73 100644 |
--- a/third_party/WebKit/Source/web/LinkHighlightImpl.cpp |
+++ b/third_party/WebKit/Source/web/LinkHighlightImpl.cpp |
@@ -314,8 +314,9 @@ void LinkHighlightImpl::startHighlightAnimationIfNeeded() { |
// Make sure we have displayed for at least minPreFadeDuration before starting |
// to fade out. |
float extraDurationRequired = std::max( |
- 0.f, minPreFadeDuration - |
- static_cast<float>(monotonicallyIncreasingTime() - m_startTime)); |
+ 0.f, |
+ minPreFadeDuration - |
+ static_cast<float>(monotonicallyIncreasingTime() - m_startTime)); |
if (extraDurationRequired) |
curve->addKeyframe(CompositorFloatKeyframe(extraDurationRequired, |
startOpacity, timingFunction)); |