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

Issue 2379863003: Implement AnimationEffectTimingReadOnly interface (Closed)

Created:
4 years, 2 months ago by suzyh_UTC10 (ex-contributor)
Modified:
4 years, 2 months ago
CC:
darktears, apavlov+blink_chromium.org, blink-reviews, blink-reviews-animation_chromium.org, caseq+blink_chromium.org, chromium-reviews, devtools-reviews_chromium.org, Eric Willigers, kozyatinskiy+blink_chromium.org, lushnikov+blink_chromium.org, pfeldman+blink_chromium.org, rjwright, shans
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Implement AnimationEffectTimingReadOnly interface This patch implements AnimationEffectTimingReadOnly, an interface of the Web Animations API that is currently missing (http://w3c.github.io/web-animations/#the-animationeffecttimingreadonly-interface). The interface is only exposed behind the experimental-web-platform-features flag. BUG=624639 Committed: https://crrev.com/1eb6e3ef5f59e0423ec0a6ab3e35812122ca1399 Cr-Commit-Position: refs/heads/master@{#423064}

Patch Set 1 #

Total comments: 4

Patch Set 2 : Response to review, update formatting of new files #

Unified diffs Side-by-side diffs Delta from patch set Stats (+181 lines, -69 lines) Patch
M third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt View 1 2 chunks +12 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/animation/AnimationEffectReadOnly.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/animation/AnimationEffectReadOnly.cpp View 1 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/animation/AnimationEffectReadOnly.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/animation/AnimationEffectTiming.h View 1 3 chunks +11 lines, -15 lines 0 comments Download
M third_party/WebKit/Source/core/animation/AnimationEffectTiming.cpp View 1 3 chunks +3 lines, -42 lines 0 comments Download
M third_party/WebKit/Source/core/animation/AnimationEffectTiming.idl View 1 chunk +1 line, -2 lines 0 comments Download
A third_party/WebKit/Source/core/animation/AnimationEffectTimingReadOnly.h View 1 1 chunk +45 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/core/animation/AnimationEffectTimingReadOnly.cpp View 1 1 chunk +69 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/core/animation/AnimationEffectTimingReadOnly.idl View 1 chunk +19 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/animation/BUILD.gn View 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/animation/KeyframeEffect.h View 1 3 chunks +4 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/animation/KeyframeEffect.cpp View 1 2 chunks +5 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/core_idl_files.gni View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp View 1 1 chunk +3 lines, -2 lines 0 comments Download

Messages

Total messages: 16 (4 generated)
suzyh_UTC10 (ex-contributor)
4 years, 2 months ago (2016-09-29 02:59:45 UTC) #2
alancutter (OOO until 2018)
lgtm after non-nit is resolved. https://codereview.chromium.org/2379863003/diff/1/third_party/WebKit/Source/core/animation/AnimationEffectTimingReadOnly.h File third_party/WebKit/Source/core/animation/AnimationEffectTimingReadOnly.h (right): https://codereview.chromium.org/2379863003/diff/1/third_party/WebKit/Source/core/animation/AnimationEffectTimingReadOnly.h#newcode1 third_party/WebKit/Source/core/animation/AnimationEffectTimingReadOnly.h:1: // Copyright 2014 The ...
4 years, 2 months ago (2016-09-30 04:32:10 UTC) #3
alancutter (OOO until 2018)
Oops, didn't click save. https://codereview.chromium.org/2379863003/diff/1/third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp File third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp (right): https://codereview.chromium.org/2379863003/diff/1/third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp#newcode351 third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp:351: AnimationEffectTiming* timing = toKeyframeEffect(animation->effect())->timing(); Non-nit: ...
4 years, 2 months ago (2016-09-30 04:32:46 UTC) #4
suzyh_UTC10 (ex-contributor)
https://codereview.chromium.org/2379863003/diff/1/third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp File third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp (right): https://codereview.chromium.org/2379863003/diff/1/third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp#newcode351 third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp:351: AnimationEffectTiming* timing = toKeyframeEffect(animation->effect())->timing(); On 2016/09/30 at 04:32:46, alancutter ...
4 years, 2 months ago (2016-10-04 06:57:31 UTC) #5
alancutter (OOO until 2018)
https://codereview.chromium.org/2379863003/diff/1/third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp File third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp (right): https://codereview.chromium.org/2379863003/diff/1/third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp#newcode351 third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp:351: AnimationEffectTiming* timing = toKeyframeEffect(animation->effect())->timing(); On 2016/10/04 at 06:57:31, suzyh ...
4 years, 2 months ago (2016-10-04 11:59:19 UTC) #6
suzyh_UTC10 (ex-contributor)
On 2016/10/04 at 11:59:19, alancutter wrote: > https://codereview.chromium.org/2379863003/diff/1/third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp > File third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp (right): > > https://codereview.chromium.org/2379863003/diff/1/third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp#newcode351 ...
4 years, 2 months ago (2016-10-04 23:54:46 UTC) #7
alancutter (OOO until 2018)
lgtm
4 years, 2 months ago (2016-10-05 00:22:15 UTC) #8
suzyh_UTC10 (ex-contributor)
+dstockwell for core/
4 years, 2 months ago (2016-10-05 00:29:25 UTC) #10
dstockwell
lgtm
4 years, 2 months ago (2016-10-05 00:36:13 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2379863003/20001
4 years, 2 months ago (2016-10-05 01:29:52 UTC) #13
commit-bot: I haz the power
Committed patchset #2 (id:20001)
4 years, 2 months ago (2016-10-05 03:19:33 UTC) #14
commit-bot: I haz the power
4 years, 2 months ago (2016-10-05 03:23:25 UTC) #16
Message was sent while issue was closed.
Patchset 2 (id:??) landed as
https://crrev.com/1eb6e3ef5f59e0423ec0a6ab3e35812122ca1399
Cr-Commit-Position: refs/heads/master@{#423064}

Powered by Google App Engine
This is Rietveld 408576698