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

Issue 946323002: Animations: Introduce compositor AnimationPlayer and AnimationTimeline. (Closed)

Created:
5 years, 10 months ago by loyso (OOO)
Modified:
5 years, 8 months ago
CC:
blink-reviews, blink-reviews-animation_chromium.org, blink-reviews-dom_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Target Ref:
refs/heads/master
Project:
blink
Visibility:
Public.

Description

Animations: Introduce compositor AnimationPlayer and AnimationTimeline. The compositor should not need to worry about servicing animations. Instead, it should be able to request property updates as needed from external mutators. - We setup compositor representations for AnimaitonPlayer and AnimationTimeline. - We add/remove animations to compositor AnimaitonPlayer from now. A blink part. Chromium part: https://codereview.chromium.org/947033002/ BUG=394777 R=dstockwell@chromium.org R=shane@chromium.org Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=192909

Patch Set 1 #

Total comments: 6

Patch Set 2 : Implement runtime flag. #

Patch Set 3 : Rebase. #

Patch Set 4 : Rename runtime flag (as discussed). #

Patch Set 5 : Fix the order. #

Total comments: 24

Patch Set 6 : Implement layer attach/detach. Fix code review issues. #

Total comments: 1

Patch Set 7 : Rename. Create cc::AnimationPlayer on PreCommit if needed. #

Total comments: 19

Patch Set 8 : Address codereview issues. Simplify composited layers attachment. #

Patch Set 9 : Rebase. #

Patch Set 10 : Support multiple timelines. #

Total comments: 8

Patch Set 11 : Reattach composited layers on preCommit if sourceChanged. #

Patch Set 12 : Add layer attach/detach tests. Address codereview suggestions. #

Patch Set 13 : Format. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+574 lines, -20 lines) Patch
A ManualTests/animation/compositor-animation-multiple-timelines.html View 1 2 3 4 5 6 7 8 1 chunk +51 lines, -0 lines 0 comments Download
A ManualTests/animation/compositor-animation-style-change.html View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +98 lines, -0 lines 0 comments Download
M Source/core/animation/Animation.h View 1 2 3 4 5 6 1 chunk +3 lines, -0 lines 0 comments Download
M Source/core/animation/Animation.cpp View 1 2 3 4 5 6 7 8 3 chunks +20 lines, -3 lines 0 comments Download
M Source/core/animation/AnimationPlayer.h View 1 2 3 4 5 6 7 8 9 10 11 12 6 chunks +22 lines, -3 lines 0 comments Download
M Source/core/animation/AnimationPlayer.cpp View 1 2 3 4 5 6 7 8 9 10 11 10 chunks +87 lines, -2 lines 0 comments Download
M Source/core/animation/AnimationTimeline.h View 1 2 3 4 5 6 7 3 chunks +5 lines, -0 lines 0 comments Download
M Source/core/animation/AnimationTimeline.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +7 lines, -0 lines 0 comments Download
M Source/core/animation/CompositorAnimations.h View 1 2 3 4 5 6 1 chunk +6 lines, -3 lines 0 comments Download
M Source/core/animation/CompositorAnimations.cpp View 1 2 3 4 5 6 7 8 6 chunks +64 lines, -8 lines 0 comments Download
M Source/core/layout/compositing/DeprecatedPaintLayerCompositor.h View 1 2 3 4 5 6 7 8 9 1 chunk +3 lines, -0 lines 0 comments Download
M Source/core/layout/compositing/DeprecatedPaintLayerCompositor.cpp View 1 2 3 4 5 6 7 8 9 4 chunks +31 lines, -1 line 0 comments Download
M Source/core/page/ChromeClient.h View 1 2 3 4 5 6 7 8 9 2 chunks +4 lines, -0 lines 0 comments Download
M Source/platform/RuntimeEnabledFeatures.in View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +2 lines, -0 lines 0 comments Download
M Source/web/ChromeClientImpl.h View 1 2 3 4 5 6 7 8 9 1 chunk +3 lines, -0 lines 0 comments Download
M Source/web/ChromeClientImpl.cpp View 1 2 3 4 5 6 7 8 9 2 chunks +40 lines, -0 lines 0 comments Download
M Source/web/WebFrameWidgetImpl.h View 1 2 3 4 5 6 7 8 9 2 chunks +3 lines, -0 lines 0 comments Download
M Source/web/WebFrameWidgetImpl.cpp View 1 2 3 4 5 6 7 8 9 1 chunk +13 lines, -0 lines 0 comments Download
M Source/web/WebRuntimeFeatures.cpp View 1 2 3 4 5 6 7 8 1 chunk +5 lines, -0 lines 0 comments Download
M Source/web/WebViewImpl.h View 1 2 3 4 5 6 7 8 9 2 chunks +3 lines, -0 lines 0 comments Download
M Source/web/WebViewImpl.cpp View 1 2 3 4 5 6 7 8 9 1 chunk +12 lines, -0 lines 0 comments Download
A public/platform/WebCompositorAnimationPlayer.h View 1 2 3 4 5 1 chunk +36 lines, -0 lines 0 comments Download
A public/platform/WebCompositorAnimationPlayerClient.h View 1 chunk +22 lines, -0 lines 0 comments Download
A public/platform/WebCompositorAnimationTimeline.h View 1 chunk +23 lines, -0 lines 0 comments Download
M public/platform/WebCompositorSupport.h View 2 chunks +6 lines, -0 lines 0 comments Download
M public/platform/WebLayerTreeView.h View 1 2 3 4 5 6 7 8 9 2 chunks +3 lines, -0 lines 0 comments Download
M public/web/WebRuntimeFeatures.h View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -0 lines 0 comments Download

Messages

Total messages: 59 (6 generated)
loyso (OOO)
5 years, 10 months ago (2015-02-23 05:29:29 UTC) #1
dstockwell
https://codereview.chromium.org/946323002/diff/1/Source/core/animation/AnimationPlayer.cpp File Source/core/animation/AnimationPlayer.cpp (right): https://codereview.chromium.org/946323002/diff/1/Source/core/animation/AnimationPlayer.cpp#newcode97 Source/core/animation/AnimationPlayer.cpp:97: createCompositorPlayer(); Why do we always create a compositor player? ...
5 years, 10 months ago (2015-02-26 00:07:12 UTC) #2
loyso (OOO)
https://codereview.chromium.org/946323002/diff/1/Source/core/animation/AnimationPlayer.cpp File Source/core/animation/AnimationPlayer.cpp (right): https://codereview.chromium.org/946323002/diff/1/Source/core/animation/AnimationPlayer.cpp#newcode97 Source/core/animation/AnimationPlayer.cpp:97: createCompositorPlayer(); On 2015/02/26 00:07:12, dstockwell wrote: > Why do ...
5 years, 10 months ago (2015-02-26 03:24:57 UTC) #3
loyso (OOO)
aelias@chromium.org: Please review changes in jochen@chromium.org: Please review changes in This is DRAFT, not to ...
5 years, 10 months ago (2015-02-27 03:03:45 UTC) #5
loyso (OOO)
5 years, 9 months ago (2015-03-06 01:53:26 UTC) #6
loyso (OOO)
On 2015/03/06 01:53:26, loyso wrote: PTAL! This is not a draft anymore.
5 years, 9 months ago (2015-03-09 02:57:47 UTC) #8
loyso (OOO)
Sigbjørn, Oilpan review please? :)
5 years, 9 months ago (2015-03-09 03:28:20 UTC) #10
sof
Sorry about the delay; Oilpan lgtm.
5 years, 9 months ago (2015-03-11 11:04:24 UTC) #11
aelias_OOO_until_Jul13
https://codereview.chromium.org/946323002/diff/80001/Source/platform/RuntimeEnabledFeatures.in File Source/platform/RuntimeEnabledFeatures.in (right): https://codereview.chromium.org/946323002/diff/80001/Source/platform/RuntimeEnabledFeatures.in#newcode36 Source/platform/RuntimeEnabledFeatures.in:36: CompositorAnimationTimelines I don't think we should have a permanent ...
5 years, 9 months ago (2015-03-13 00:38:32 UTC) #12
loyso (OOO)
https://codereview.chromium.org/946323002/diff/80001/Source/platform/RuntimeEnabledFeatures.in File Source/platform/RuntimeEnabledFeatures.in (right): https://codereview.chromium.org/946323002/diff/80001/Source/platform/RuntimeEnabledFeatures.in#newcode36 Source/platform/RuntimeEnabledFeatures.in:36: CompositorAnimationTimelines On 2015/03/13 00:38:32, aelias wrote: > I don't ...
5 years, 9 months ago (2015-03-13 01:07:01 UTC) #13
aelias_OOO_until_Jul13
https://codereview.chromium.org/946323002/diff/80001/Source/web/ChromeClientImpl.cpp File Source/web/ChromeClientImpl.cpp (right): https://codereview.chromium.org/946323002/diff/80001/Source/web/ChromeClientImpl.cpp#newcode702 Source/web/ChromeClientImpl.cpp:702: m_webView->setCompositorAnimationTimeline(compositorTimeline); On 2015/03/13 at 01:07:01, loyso wrote: > On ...
5 years, 9 months ago (2015-03-13 01:31:19 UTC) #14
loyso (OOO)
https://codereview.chromium.org/946323002/diff/80001/Source/web/ChromeClientImpl.cpp File Source/web/ChromeClientImpl.cpp (right): https://codereview.chromium.org/946323002/diff/80001/Source/web/ChromeClientImpl.cpp#newcode702 Source/web/ChromeClientImpl.cpp:702: m_webView->setCompositorAnimationTimeline(compositorTimeline); On 2015/03/13 01:31:18, aelias wrote: > On 2015/03/13 ...
5 years, 9 months ago (2015-03-13 03:37:42 UTC) #15
dstockwell
https://codereview.chromium.org/946323002/diff/80001/Source/core/animation/AnimationPlayer.cpp File Source/core/animation/AnimationPlayer.cpp (right): https://codereview.chromium.org/946323002/diff/80001/Source/core/animation/AnimationPlayer.cpp#newcode843 Source/core/animation/AnimationPlayer.cpp:843: if (Platform::current()->compositorSupport() && RuntimeEnabledFeatures::compositorAnimationTimelinesEnabled()) { For consistency I think ...
5 years, 9 months ago (2015-03-16 00:11:27 UTC) #16
aelias_OOO_until_Jul13
Source/web lgtm https://codereview.chromium.org/946323002/diff/80001/Source/web/ChromeClientImpl.cpp File Source/web/ChromeClientImpl.cpp (right): https://codereview.chromium.org/946323002/diff/80001/Source/web/ChromeClientImpl.cpp#newcode702 Source/web/ChromeClientImpl.cpp:702: m_webView->setCompositorAnimationTimeline(compositorTimeline); On 2015/03/13 at 03:37:42, loyso wrote: ...
5 years, 9 months ago (2015-03-17 18:12:27 UTC) #17
loyso (OOO)
https://codereview.chromium.org/946323002/diff/80001/Source/core/animation/AnimationPlayer.cpp File Source/core/animation/AnimationPlayer.cpp (right): https://codereview.chromium.org/946323002/diff/80001/Source/core/animation/AnimationPlayer.cpp#newcode843 Source/core/animation/AnimationPlayer.cpp:843: if (Platform::current()->compositorSupport() && RuntimeEnabledFeatures::compositorAnimationTimelinesEnabled()) { On 2015/03/16 00:11:27, dstockwell ...
5 years, 9 months ago (2015-03-18 06:59:43 UTC) #18
dstockwell
https://codereview.chromium.org/946323002/diff/80001/Source/core/animation/AnimationPlayer.cpp File Source/core/animation/AnimationPlayer.cpp (right): https://codereview.chromium.org/946323002/diff/80001/Source/core/animation/AnimationPlayer.cpp#newcode845 Source/core/animation/AnimationPlayer.cpp:845: if (m_compositorPlayer) On 2015/03/18 at 06:59:43, loyso wrote: > ...
5 years, 9 months ago (2015-03-18 07:17:18 UTC) #19
loyso (OOO)
https://codereview.chromium.org/946323002/diff/80001/Source/core/animation/AnimationPlayer.cpp File Source/core/animation/AnimationPlayer.cpp (right): https://codereview.chromium.org/946323002/diff/80001/Source/core/animation/AnimationPlayer.cpp#newcode845 Source/core/animation/AnimationPlayer.cpp:845: if (m_compositorPlayer) On 2015/03/18 07:17:18, dstockwell wrote: > On ...
5 years, 9 months ago (2015-03-19 02:32:24 UTC) #20
loyso (OOO)
dstockwell@, a major change uploaded (Patch Set 6). Notice, I can move: 1) m_content->attach(this) into ...
5 years, 9 months ago (2015-03-19 03:57:25 UTC) #21
loyso (OOO)
PTAL? This is a blocker.
5 years, 9 months ago (2015-03-20 03:30:34 UTC) #22
dstockwell
Hmm, I'm not really sure about attachElementToPlayer, player's shouldn't know about elements. Won't there be ...
5 years, 9 months ago (2015-03-20 04:26:38 UTC) #23
loyso (OOO)
On 2015/03/20 04:26:38, dstockwell wrote: > Hmm, I'm not really sure about attachElementToPlayer, player's shouldn't ...
5 years, 9 months ago (2015-03-20 05:07:29 UTC) #24
dstockwell
On 2015/03/20 at 05:07:29, loyso wrote: > On 2015/03/20 04:26:38, dstockwell wrote: > > Hmm, ...
5 years, 9 months ago (2015-03-22 23:04:28 UTC) #25
dstockwell
https://codereview.chromium.org/946323002/diff/100001/Source/core/animation/AnimationPlayer.h File Source/core/animation/AnimationPlayer.h (right): https://codereview.chromium.org/946323002/diff/100001/Source/core/animation/AnimationPlayer.h#newcode279 Source/core/animation/AnimationPlayer.h:279: bool m_attachCompositorPlayerToElement; Couldn't we tie this attachment to the ...
5 years, 9 months ago (2015-03-22 23:07:28 UTC) #26
loyso (OOO)
https://codereview.chromium.org/946323002/diff/80001/Source/core/animation/AnimationPlayer.cpp File Source/core/animation/AnimationPlayer.cpp (right): https://codereview.chromium.org/946323002/diff/80001/Source/core/animation/AnimationPlayer.cpp#newcode845 Source/core/animation/AnimationPlayer.cpp:845: if (m_compositorPlayer) On 2015/03/18 07:17:18, dstockwell wrote: > On ...
5 years, 9 months ago (2015-03-24 02:50:56 UTC) #27
loyso (OOO)
https://codereview.chromium.org/946323002/diff/80001/Source/core/animation/AnimationPlayer.cpp File Source/core/animation/AnimationPlayer.cpp (right): https://codereview.chromium.org/946323002/diff/80001/Source/core/animation/AnimationPlayer.cpp#newcode845 Source/core/animation/AnimationPlayer.cpp:845: if (m_compositorPlayer) On 2015/03/24 02:50:56, loyso wrote: > On ...
5 years, 9 months ago (2015-03-24 02:55:17 UTC) #28
loyso (OOO)
https://codereview.chromium.org/946323002/diff/120001/Source/core/animation/AnimationPlayer.cpp File Source/core/animation/AnimationPlayer.cpp (right): https://codereview.chromium.org/946323002/diff/120001/Source/core/animation/AnimationPlayer.cpp#newcode283 Source/core/animation/AnimationPlayer.cpp:283: if (isCandidateForAnimationOnCompositor()) { Do we need to delete it ...
5 years, 9 months ago (2015-03-24 06:30:15 UTC) #29
dstockwell
Sorry, didn't realize you had finished responding to my comments. Please reply with "Done." so ...
5 years, 9 months ago (2015-03-26 03:04:39 UTC) #30
loyso (OOO)
https://codereview.chromium.org/946323002/diff/120001/Source/core/animation/AnimationPlayer.cpp File Source/core/animation/AnimationPlayer.cpp (right): https://codereview.chromium.org/946323002/diff/120001/Source/core/animation/AnimationPlayer.cpp#newcode283 Source/core/animation/AnimationPlayer.cpp:283: if (isCandidateForAnimationOnCompositor()) { On 2015/03/26 03:04:39, dstockwell wrote: > ...
5 years, 9 months ago (2015-03-26 23:36:14 UTC) #31
dstockwell
https://codereview.chromium.org/946323002/diff/120001/Source/core/animation/AnimationPlayer.cpp File Source/core/animation/AnimationPlayer.cpp (right): https://codereview.chromium.org/946323002/diff/120001/Source/core/animation/AnimationPlayer.cpp#newcode898 Source/core/animation/AnimationPlayer.cpp:898: m_attachCompositedLayers = true; On 2015/03/26 23:36:14, loyso wrote: > ...
5 years, 9 months ago (2015-03-27 00:27:22 UTC) #32
dstockwell
https://codereview.chromium.org/946323002/diff/120001/Source/web/ChromeClientImpl.cpp File Source/web/ChromeClientImpl.cpp (right): https://codereview.chromium.org/946323002/diff/120001/Source/web/ChromeClientImpl.cpp#newcode697 Source/web/ChromeClientImpl.cpp:697: WebCompositorAnimationTimeline* compositorTimeline = rootLayer && localRoot->document() ? localRoot->document()->timeline().compositorTimeline() : ...
5 years, 9 months ago (2015-03-27 00:30:58 UTC) #33
loyso (OOO)
https://codereview.chromium.org/946323002/diff/120001/Source/web/ChromeClientImpl.cpp File Source/web/ChromeClientImpl.cpp (right): https://codereview.chromium.org/946323002/diff/120001/Source/web/ChromeClientImpl.cpp#newcode697 Source/web/ChromeClientImpl.cpp:697: WebCompositorAnimationTimeline* compositorTimeline = rootLayer && localRoot->document() ? localRoot->document()->timeline().compositorTimeline() : ...
5 years, 9 months ago (2015-03-27 00:53:39 UTC) #34
dstockwell
https://codereview.chromium.org/946323002/diff/120001/Source/web/ChromeClientImpl.cpp File Source/web/ChromeClientImpl.cpp (right): https://codereview.chromium.org/946323002/diff/120001/Source/web/ChromeClientImpl.cpp#newcode697 Source/web/ChromeClientImpl.cpp:697: WebCompositorAnimationTimeline* compositorTimeline = rootLayer && localRoot->document() ? localRoot->document()->timeline().compositorTimeline() : ...
5 years, 9 months ago (2015-03-27 01:01:20 UTC) #35
loyso (OOO)
https://codereview.chromium.org/946323002/diff/120001/Source/core/animation/AnimationPlayer.cpp File Source/core/animation/AnimationPlayer.cpp (right): https://codereview.chromium.org/946323002/diff/120001/Source/core/animation/AnimationPlayer.cpp#newcode899 Source/core/animation/AnimationPlayer.cpp:899: updateCompositedLayersAttachment(); On 2015/03/27 00:27:22, dstockwell wrote: > So, why ...
5 years, 9 months ago (2015-03-27 01:02:42 UTC) #36
loyso (OOO)
https://codereview.chromium.org/946323002/diff/120001/Source/web/ChromeClientImpl.cpp File Source/web/ChromeClientImpl.cpp (right): https://codereview.chromium.org/946323002/diff/120001/Source/web/ChromeClientImpl.cpp#newcode697 Source/web/ChromeClientImpl.cpp:697: WebCompositorAnimationTimeline* compositorTimeline = rootLayer && localRoot->document() ? localRoot->document()->timeline().compositorTimeline() : ...
5 years, 9 months ago (2015-03-27 01:11:10 UTC) #37
dstockwell
On 2015/03/27 at 01:11:10, loyso wrote: > https://codereview.chromium.org/946323002/diff/120001/Source/web/ChromeClientImpl.cpp > File Source/web/ChromeClientImpl.cpp (right): > > https://codereview.chromium.org/946323002/diff/120001/Source/web/ChromeClientImpl.cpp#newcode697 ...
5 years, 9 months ago (2015-03-27 01:29:52 UTC) #38
loyso (OOO)
On 2015/03/27 01:29:52, dstockwell wrote: > On 2015/03/27 at 01:11:10, loyso wrote: > > > ...
5 years, 9 months ago (2015-03-27 02:23:00 UTC) #39
loyso (OOO)
5 years, 9 months ago (2015-03-27 02:23:19 UTC) #40
dstockwell
On 2015/03/27 at 01:02:42, loyso wrote: > https://codereview.chromium.org/946323002/diff/120001/Source/core/animation/AnimationPlayer.cpp > File Source/core/animation/AnimationPlayer.cpp (right): > > https://codereview.chromium.org/946323002/diff/120001/Source/core/animation/AnimationPlayer.cpp#newcode899 ...
5 years, 9 months ago (2015-03-27 02:46:08 UTC) #41
loyso (OOO)
On 2015/03/27 02:46:08, dstockwell wrote: > On 2015/03/27 at 01:02:42, loyso wrote: > > > ...
5 years, 9 months ago (2015-03-27 02:53:35 UTC) #42
dstockwell
On 2015/03/27 at 02:53:35, loyso wrote: > LinkHighlight and ProgrammaticScrollAnimator add animations to WebLayer. In ...
5 years, 8 months ago (2015-03-29 22:31:40 UTC) #43
loyso (OOO)
On 2015/03/29 22:31:40, dstockwell wrote: > On 2015/03/27 at 02:53:35, loyso wrote: > > LinkHighlight ...
5 years, 8 months ago (2015-03-30 02:47:07 UTC) #44
loyso (OOO)
https://codereview.chromium.org/946323002/diff/120001/Source/core/animation/AnimationPlayer.cpp File Source/core/animation/AnimationPlayer.cpp (right): https://codereview.chromium.org/946323002/diff/120001/Source/core/animation/AnimationPlayer.cpp#newcode898 Source/core/animation/AnimationPlayer.cpp:898: m_attachCompositedLayers = true; On 2015/03/27 00:27:22, dstockwell wrote: > ...
5 years, 8 months ago (2015-03-30 02:47:20 UTC) #45
loyso (OOO)
PTAL!
5 years, 8 months ago (2015-03-31 01:38:59 UTC) #46
dstockwell
lgtm I'd still like to see some tests for detaching and reattaching elements. eg. 1. ...
5 years, 8 months ago (2015-03-31 02:13:02 UTC) #47
loyso (OOO)
On 2015/03/31 02:13:02, dstockwell wrote: > I'd still like to see some tests for detaching ...
5 years, 8 months ago (2015-03-31 02:30:15 UTC) #49
loyso (OOO)
https://codereview.chromium.org/946323002/diff/180001/Source/core/animation/AnimationPlayer.cpp File Source/core/animation/AnimationPlayer.cpp (right): https://codereview.chromium.org/946323002/diff/180001/Source/core/animation/AnimationPlayer.cpp#newcode278 Source/core/animation/AnimationPlayer.cpp:278: createCompositorPlayer(); On 2015/03/31 02:13:01, dstockwell wrote: > It now ...
5 years, 8 months ago (2015-03-31 02:30:27 UTC) #50
Ian Vollick
https://codereview.chromium.org/946323002/diff/180001/Source/platform/RuntimeEnabledFeatures.in File Source/platform/RuntimeEnabledFeatures.in (right): https://codereview.chromium.org/946323002/diff/180001/Source/platform/RuntimeEnabledFeatures.in#newcode36 Source/platform/RuntimeEnabledFeatures.in:36: CompositorAnimationTimelines Source/platform lgtm
5 years, 8 months ago (2015-03-31 02:52:34 UTC) #51
dstockwell
https://codereview.chromium.org/946323002/diff/180001/Source/core/animation/AnimationPlayer.cpp File Source/core/animation/AnimationPlayer.cpp (right): https://codereview.chromium.org/946323002/diff/180001/Source/core/animation/AnimationPlayer.cpp#newcode456 Source/core/animation/AnimationPlayer.cpp:456: attachCompositedLayers(); On 2015/03/31 02:30:27, loyso wrote: > On 2015/03/31 ...
5 years, 8 months ago (2015-03-31 03:27:32 UTC) #52
loyso (OOO)
https://codereview.chromium.org/946323002/diff/180001/Source/core/animation/AnimationPlayer.cpp File Source/core/animation/AnimationPlayer.cpp (right): https://codereview.chromium.org/946323002/diff/180001/Source/core/animation/AnimationPlayer.cpp#newcode456 Source/core/animation/AnimationPlayer.cpp:456: attachCompositedLayers(); On 2015/03/31 03:27:32, dstockwell wrote: > On 2015/03/31 ...
5 years, 8 months ago (2015-03-31 04:43:31 UTC) #53
loyso (OOO)
https://codereview.chromium.org/946323002/diff/180001/Source/core/animation/AnimationPlayer.cpp File Source/core/animation/AnimationPlayer.cpp (right): https://codereview.chromium.org/946323002/diff/180001/Source/core/animation/AnimationPlayer.cpp#newcode278 Source/core/animation/AnimationPlayer.cpp:278: createCompositorPlayer(); On 2015/03/31 02:13:01, dstockwell wrote: > It now ...
5 years, 8 months ago (2015-04-01 00:14:26 UTC) #54
loyso (OOO)
On 2015/03/31 02:13:02, dstockwell wrote: > I'd still like to see some tests for detaching ...
5 years, 8 months ago (2015-04-01 00:15:24 UTC) #55
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/946323002/240001
5 years, 8 months ago (2015-04-01 00:50:46 UTC) #58
commit-bot: I haz the power
5 years, 8 months ago (2015-04-01 06:30:02 UTC) #59
Message was sent while issue was closed.
Committed patchset #13 (id:240001) as
https://src.chromium.org/viewvc/blink?view=rev&revision=192909

Powered by Google App Engine
This is Rietveld 408576698