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

Side by Side Diff: cc/CCLayerAnimationController.h

Issue 10914268: Change cc files from namespace WebCore to cc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 8 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « cc/CCKeyframedAnimationCurveTest.cpp ('k') | cc/CCLayerAnimationController.cpp » ('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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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 CCLayerAnimationController_h 5 #ifndef CCLayerAnimationController_h
6 #define CCLayerAnimationController_h 6 #define CCLayerAnimationController_h
7 7
8 #include "CCAnimationEvents.h" 8 #include "CCAnimationEvents.h"
9 9
10 #include <wtf/HashSet.h> 10 #include <wtf/HashSet.h>
11 #include <wtf/Noncopyable.h> 11 #include <wtf/Noncopyable.h>
12 #include <wtf/OwnPtr.h> 12 #include <wtf/OwnPtr.h>
13 #include <wtf/PassOwnPtr.h> 13 #include <wtf/PassOwnPtr.h>
14 #include <wtf/Vector.h> 14 #include <wtf/Vector.h>
15 15
16 namespace WebKit { 16 namespace WebKit {
17 class WebTransformationMatrix; 17 class WebTransformationMatrix;
18 } 18 }
19 19
20 namespace WebCore { 20 namespace cc {
21 21
22 class Animation; 22 class Animation;
23 class IntSize; 23 class IntSize;
24 class KeyframeValueList; 24 class KeyframeValueList;
25 25
26 class CCLayerAnimationControllerClient { 26 class CCLayerAnimationControllerClient {
27 public: 27 public:
28 virtual ~CCLayerAnimationControllerClient() { } 28 virtual ~CCLayerAnimationControllerClient() { }
29 29
30 virtual int id() const = 0; 30 virtual int id() const = 0;
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 100
101 void tickAnimations(double monotonicTime); 101 void tickAnimations(double monotonicTime);
102 102
103 // If this is true, we force a sync to the impl thread. 103 // If this is true, we force a sync to the impl thread.
104 bool m_forceSync; 104 bool m_forceSync;
105 105
106 CCLayerAnimationControllerClient* m_client; 106 CCLayerAnimationControllerClient* m_client;
107 Vector<OwnPtr<CCActiveAnimation> > m_activeAnimations; 107 Vector<OwnPtr<CCActiveAnimation> > m_activeAnimations;
108 }; 108 };
109 109
110 } // namespace WebCore 110 } // namespace cc
111 111
112 #endif // CCLayerAnimationController_h 112 #endif // CCLayerAnimationController_h
OLDNEW
« no previous file with comments | « cc/CCKeyframedAnimationCurveTest.cpp ('k') | cc/CCLayerAnimationController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698