summaryrefslogtreecommitdiffstats
path: root/cc/animation/target_property.h
Commit message (Collapse)AuthorAgeFilesLines
* CC Animation: Use bitset instead of unordered_set in LayerAnimationControllerloyso2016-03-181-1/+2
| | | | | | | | | | | A performance optimization. This avoids any heap allocations. BUG=595584 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1806223002 Cr-Commit-Position: refs/heads/master@{#381850}
* CC Animation: Expose TargetProperty enum to be aliased in Blink Platform.loyso2016-02-251-0/+28
TargetProperty is intended to be used as an alias in Source/platform/animation/CompositorTargetProperty.h This is slightly better then untyped approach used here: https://codereview.chromium.org/1599673002 where we setup struct with constants in it and pass uint32_t everywhere. An alternative approach with strongly typed enum considered too verbose: https://codereview.chromium.org/1698813002/ BUG=577016 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1700653002 Cr-Commit-Position: refs/heads/master@{#377501}