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

Unified Diff: third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.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/KeyframeEffectReadOnly.cpp
diff --git a/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp b/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp
index 62169ab76a67887a79619b90a23a4da218e58f30..1e16bcafca7b53dc99b65c58268d26e646ffcd00 100644
--- a/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp
+++ b/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp
@@ -49,8 +49,9 @@ KeyframeEffectReadOnly* KeyframeEffectReadOnly::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);
}
@@ -70,8 +71,9 @@ KeyframeEffectReadOnly* KeyframeEffectReadOnly::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);
}
@@ -86,8 +88,9 @@ KeyframeEffectReadOnly* KeyframeEffectReadOnly::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