Majid Valipour | e9855f7 | 2017-10-20 02:08:58 | [diff] [blame] | 1 | // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include "cc/trees/layer_tree_mutator.h" |
| 6 | |
| 7 | namespace cc { |
| 8 | |
Yi Gu | 9bbcad0 | 2018-06-14 19:44:06 | [diff] [blame] | 9 | MutatorInputState::AddAndUpdateState::AddAndUpdateState( |
Yi Gu | a5a3bb6c | 2018-06-01 22:16:07 | [diff] [blame] | 10 | int animation_id, |
| 11 | std::string name, |
| 12 | double current_time, |
| 13 | std::unique_ptr<AnimationOptions> options) |
| 14 | : animation_id(animation_id), |
| 15 | name(name), |
| 16 | current_time(current_time), |
| 17 | options(std::move(options)) {} |
Yi Gu | 9bbcad0 | 2018-06-14 19:44:06 | [diff] [blame] | 18 | MutatorInputState::AddAndUpdateState::AddAndUpdateState(AddAndUpdateState&&) = |
Yi Gu | a5a3bb6c | 2018-06-01 22:16:07 | [diff] [blame] | 19 | default; |
Yi Gu | 9bbcad0 | 2018-06-14 19:44:06 | [diff] [blame] | 20 | MutatorInputState::AddAndUpdateState::~AddAndUpdateState() = default; |
Yi Gu | a5a3bb6c | 2018-06-01 22:16:07 | [diff] [blame] | 21 | |
Majid Valipour | e9855f7 | 2017-10-20 02:08:58 | [diff] [blame] | 22 | MutatorInputState::MutatorInputState() = default; |
| 23 | MutatorInputState::~MutatorInputState() = default; |
| 24 | |
| 25 | MutatorOutputState::MutatorOutputState() = default; |
| 26 | MutatorOutputState::~MutatorOutputState() = default; |
| 27 | |
| 28 | } // namespace cc |