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

Side by Side Diff: cc/animation/element_animations.h

Issue 2110683004: cc: Move filters to the effect tree (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address review comments Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | cc/animation/element_animations.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CC_ANIMATION_ELEMENT_ANIMATIONS_H_ 5 #ifndef CC_ANIMATION_ELEMENT_ANIMATIONS_H_
6 #define CC_ANIMATION_ELEMENT_ANIMATIONS_H_ 6 #define CC_ANIMATION_ELEMENT_ANIMATIONS_H_
7 7
8 #include <bitset> 8 #include <bitset>
9 #include <memory> 9 #include <memory>
10 #include <vector> 10 #include <vector>
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 bool potentially_animating_for_active_elements = false; 287 bool potentially_animating_for_active_elements = false;
288 bool potentially_animating_for_pending_elements = false; 288 bool potentially_animating_for_pending_elements = false;
289 void Clear() { 289 void Clear() {
290 currently_running_for_active_elements = false; 290 currently_running_for_active_elements = false;
291 currently_running_for_pending_elements = false; 291 currently_running_for_pending_elements = false;
292 potentially_animating_for_active_elements = false; 292 potentially_animating_for_active_elements = false;
293 potentially_animating_for_pending_elements = false; 293 potentially_animating_for_pending_elements = false;
294 } 294 }
295 }; 295 };
296 296
297 struct PropertyAnimationState filter_animation_state_;
297 struct PropertyAnimationState opacity_animation_state_; 298 struct PropertyAnimationState opacity_animation_state_;
298 struct PropertyAnimationState transform_animation_state_; 299 struct PropertyAnimationState transform_animation_state_;
299 300
300 DISALLOW_COPY_AND_ASSIGN(ElementAnimations); 301 DISALLOW_COPY_AND_ASSIGN(ElementAnimations);
301 }; 302 };
302 303
303 } // namespace cc 304 } // namespace cc
304 305
305 #endif // CC_ANIMATION_ELEMENT_ANIMATIONS_H_ 306 #endif // CC_ANIMATION_ELEMENT_ANIMATIONS_H_
OLDNEW
« no previous file with comments | « no previous file | cc/animation/element_animations.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698