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

Issue 1957533002: cc : Track opacity animation changes on effect tree (Closed)

Created:
4 years, 7 months ago by jaydasika
Modified:
4 years, 7 months ago
CC:
chromium-reviews, cc-bugs_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

cc : Track opacity animation changes on effect tree BUG=609205 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Committed: https://crrev.com/9cb21c771b787047cf24b129859b8d6636a0c61d Cr-Commit-Position: refs/heads/master@{#392751}

Patch Set 1 #

Patch Set 2 : #

Total comments: 1

Patch Set 3 : Rebase #

Patch Set 4 : #

Total comments: 1

Patch Set 5 : #

Patch Set 6 : #

Patch Set 7 : #

Patch Set 8 : #

Total comments: 11

Patch Set 9 : #

Patch Set 10 : #

Total comments: 2

Patch Set 11 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+687 lines, -30 lines) Patch
M cc/animation/element_animations.h View 1 2 3 4 5 9 4 chunks +17 lines, -0 lines 0 comments Download
M cc/animation/element_animations.cc View 1 2 3 4 5 6 7 8 9 10 22 chunks +184 lines, -10 lines 0 comments Download
M cc/animation/element_animations_unittest.cc View 1 2 3 4 5 6 7 8 1 chunk +218 lines, -0 lines 0 comments Download
M cc/layers/layer.h View 1 2 3 4 5 1 chunk +2 lines, -0 lines 0 comments Download
M cc/layers/layer.cc View 1 2 3 4 5 6 7 8 1 chunk +25 lines, -0 lines 0 comments Download
M cc/layers/layer_impl.h View 1 2 3 4 5 1 chunk +2 lines, -0 lines 0 comments Download
M cc/layers/layer_impl.cc View 1 2 3 4 5 6 7 8 1 chunk +23 lines, -0 lines 0 comments Download
M cc/proto/property_tree.proto View 1 2 3 2 chunks +3 lines, -2 lines 0 comments Download
M cc/test/animation_timelines_test_common.h View 1 2 3 4 5 6 7 4 chunks +25 lines, -0 lines 0 comments Download
M cc/test/animation_timelines_test_common.cc View 1 2 3 4 5 6 7 3 chunks +40 lines, -0 lines 0 comments Download
M cc/trees/layer_tree_host.h View 1 2 3 4 5 1 chunk +4 lines, -0 lines 0 comments Download
M cc/trees/layer_tree_host.cc View 1 2 3 4 5 1 chunk +22 lines, -0 lines 0 comments Download
M cc/trees/layer_tree_host_common_unittest.cc View 1 2 3 4 5 6 7 8 4 chunks +62 lines, -6 lines 0 comments Download
M cc/trees/layer_tree_host_impl.h View 1 2 3 4 5 1 chunk +4 lines, -0 lines 0 comments Download
M cc/trees/layer_tree_host_impl.cc View 1 2 3 4 5 1 chunk +25 lines, -0 lines 0 comments Download
M cc/trees/mutator_host_client.h View 1 2 3 4 5 6 2 chunks +7 lines, -0 lines 0 comments Download
M cc/trees/property_tree.h View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
M cc/trees/property_tree.cc View 1 2 3 6 chunks +14 lines, -6 lines 0 comments Download
M cc/trees/property_tree_builder.cc View 1 2 3 3 chunks +8 lines, -5 lines 0 comments Download

Messages

Total messages: 19 (7 generated)
jaydasika
PTAL https://codereview.chromium.org/1957533002/diff/20001/cc/proto/property_tree.proto File cc/proto/property_tree.proto (right): https://codereview.chromium.org/1957533002/diff/20001/cc/proto/property_tree.proto#newcode87 cc/proto/property_tree.proto:87: // NEXT ID: 15 Will update this after ...
4 years, 7 months ago (2016-05-05 22:20:10 UTC) #3
jaydasika
s/has_animated_opacity/has_potential_opacity_animation
4 years, 7 months ago (2016-05-05 23:16:37 UTC) #4
ajuma
https://codereview.chromium.org/1957533002/diff/60001/cc/animation/element_animations.cc File cc/animation/element_animations.cc (right): https://codereview.chromium.org/1957533002/diff/60001/cc/animation/element_animations.cc#newcode1127 cc/animation/element_animations.cc:1127: return true; It'd be nice to make this logic ...
4 years, 7 months ago (2016-05-06 00:15:36 UTC) #5
jaydasika
Done
4 years, 7 months ago (2016-05-06 23:44:41 UTC) #6
jaydasika
Added a test that is similar to the one we have for transforms to element_animations_unittest.cc.
4 years, 7 months ago (2016-05-07 01:27:01 UTC) #8
ajuma
https://codereview.chromium.org/1957533002/diff/140001/cc/animation/element_animations_unittest.cc File cc/animation/element_animations_unittest.cc (right): https://codereview.chromium.org/1957533002/diff/140001/cc/animation/element_animations_unittest.cc#newcode3119 cc/animation/element_animations_unittest.cc:3119: ElementListType::ACTIVE)); Please also test the case where potentially-animating is ...
4 years, 7 months ago (2016-05-09 16:56:55 UTC) #9
jaydasika
https://codereview.chromium.org/1957533002/diff/140001/cc/animation/element_animations_unittest.cc File cc/animation/element_animations_unittest.cc (right): https://codereview.chromium.org/1957533002/diff/140001/cc/animation/element_animations_unittest.cc#newcode3119 cc/animation/element_animations_unittest.cc:3119: ElementListType::ACTIVE)); On 2016/05/09 16:56:55, ajuma wrote: > Please also ...
4 years, 7 months ago (2016-05-10 20:22:29 UTC) #10
ajuma
Thanks, lgtm https://codereview.chromium.org/1957533002/diff/140001/cc/layers/layer.cc File cc/layers/layer.cc (right): https://codereview.chromium.org/1957533002/diff/140001/cc/layers/layer.cc#newcode1674 cc/layers/layer.cc:1674: if (!node) On 2016/05/10 20:22:29, jaydasika wrote: ...
4 years, 7 months ago (2016-05-10 20:46:20 UTC) #11
jaydasika
https://codereview.chromium.org/1957533002/diff/180001/cc/animation/element_animations.cc File cc/animation/element_animations.cc (right): https://codereview.chromium.org/1957533002/diff/180001/cc/animation/element_animations.cc#newcode1471 cc/animation/element_animations.cc:1471: element_id(), list_type, change_type, is_animating); On 2016/05/10 20:46:20, ajuma wrote: ...
4 years, 7 months ago (2016-05-10 21:26:26 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1957533002/200001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1957533002/200001
4 years, 7 months ago (2016-05-10 22:26:56 UTC) #15
commit-bot: I haz the power
Committed patchset #11 (id:200001)
4 years, 7 months ago (2016-05-10 22:37:19 UTC) #17
commit-bot: I haz the power
4 years, 7 months ago (2016-05-10 22:38:42 UTC) #19
Message was sent while issue was closed.
Patchset 11 (id:??) landed as
https://crrev.com/9cb21c771b787047cf24b129859b8d6636a0c61d
Cr-Commit-Position: refs/heads/master@{#392751}

Powered by Google App Engine
This is Rietveld 408576698