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

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

Issue 2701993002: DO NOT COMMIT: Results of running new (proposed) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 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/KeyframeEffect.cpp
diff --git a/third_party/WebKit/Source/core/animation/KeyframeEffect.cpp b/third_party/WebKit/Source/core/animation/KeyframeEffect.cpp
index a7d89ac50fdad1f05161a2a45024f3c67e8df9cb..e998008b18eb0010a88720c02a21ae95045759c1 100644
--- a/third_party/WebKit/Source/core/animation/KeyframeEffect.cpp
+++ b/third_party/WebKit/Source/core/animation/KeyframeEffect.cpp
@@ -66,8 +66,9 @@ KeyframeEffect* KeyframeEffect::create(
Timing timing;
if (!TimingInput::convert(duration, timing, exceptionState))
return nullptr;
- return create(element, EffectInput::convert(element, effectInput,
- executionContext, exceptionState),
+ return create(element,
+ EffectInput::convert(element, effectInput, executionContext,
+ exceptionState),
timing);
}
@@ -87,8 +88,9 @@ KeyframeEffect* KeyframeEffect::create(
Document* document = element ? &element->document() : nullptr;
if (!TimingInput::convert(timingInput, timing, document, exceptionState))
return nullptr;
- return create(element, EffectInput::convert(element, effectInput,
- executionContext, exceptionState),
+ return create(element,
+ EffectInput::convert(element, effectInput, executionContext,
+ exceptionState),
timing);
}
@@ -103,8 +105,9 @@ KeyframeEffect* KeyframeEffect::create(
element->document(),
UseCounter::AnimationConstructorKeyframeListEffectNoTiming);
}
- return create(element, EffectInput::convert(element, effectInput,
- executionContext, exceptionState),
+ return create(element,
+ EffectInput::convert(element, effectInput, executionContext,
+ exceptionState),
Timing());
}

Powered by Google App Engine
This is Rietveld 408576698