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

Side by Side Diff: sky/engine/core/animation/ActiveAnimations.h

Issue 709203002: Remove more oilpan. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 | sky/engine/core/animation/AnimationNode.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 28 matching lines...) Expand all
39 #include "wtf/Vector.h" 39 #include "wtf/Vector.h"
40 40
41 namespace blink { 41 namespace blink {
42 42
43 class CSSAnimations; 43 class CSSAnimations;
44 class RenderObject; 44 class RenderObject;
45 class Element; 45 class Element;
46 46
47 typedef HashCountedSet<RawPtr<AnimationPlayer> > AnimationPlayerCountedSet; 47 typedef HashCountedSet<RawPtr<AnimationPlayer> > AnimationPlayerCountedSet;
48 48
49 class ActiveAnimations : public DummyBase<ActiveAnimations> { 49 class ActiveAnimations {
50 WTF_MAKE_NONCOPYABLE(ActiveAnimations); 50 WTF_MAKE_NONCOPYABLE(ActiveAnimations);
51 public: 51 public:
52 ActiveAnimations() 52 ActiveAnimations()
53 : m_animationStyleChange(false) 53 : m_animationStyleChange(false)
54 { 54 {
55 } 55 }
56 56
57 ~ActiveAnimations(); 57 ~ActiveAnimations();
58 58
59 // Animations that are currently active for this element, their effects will be applied 59 // Animations that are currently active for this element, their effects will be applied
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 Vector<Animation*> m_animations; 97 Vector<Animation*> m_animations;
98 #endif 98 #endif
99 99
100 // CSSAnimations checks if a style change is due to animation. 100 // CSSAnimations checks if a style change is due to animation.
101 friend class CSSAnimations; 101 friend class CSSAnimations;
102 }; 102 };
103 103
104 } // namespace blink 104 } // namespace blink
105 105
106 #endif 106 #endif
OLDNEW
« no previous file with comments | « no previous file | sky/engine/core/animation/AnimationNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698