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

Side by Side Diff: src/animator/SkAnimate.h

Issue 815883002: Cleanup: Another round of override fixes. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: revert include changes Created 6 years 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 | « gm/xfermodes.cpp ('k') | src/animator/SkAnimateBase.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 /* 2 /*
3 * Copyright 2006 The Android Open Source Project 3 * Copyright 2006 The Android Open Source Project
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 9
10 #ifndef SkAnimate_DEFINED 10 #ifndef SkAnimate_DEFINED
11 #define SkAnimate_DEFINED 11 #define SkAnimate_DEFINED
12 12
13 #include "SkAnimateBase.h" 13 #include "SkAnimateBase.h"
14 #include "SkDisplayType.h" 14 #include "SkDisplayType.h"
15 #include "SkIntArray.h" 15 #include "SkIntArray.h"
16 #include "SkUtils.h" 16 #include "SkUtils.h"
17 17
18 class SkAnimate : public SkAnimateBase { 18 class SkAnimate : public SkAnimateBase {
19 DECLARE_MEMBER_INFO(Animate); 19 DECLARE_MEMBER_INFO(Animate);
20 SkAnimate(); 20 SkAnimate();
21 virtual ~SkAnimate(); 21 virtual ~SkAnimate();
22 virtual int components(); 22 virtual int components() SK_OVERRIDE;
23 #ifdef SK_DUMP_ENABLED 23 #ifdef SK_DUMP_ENABLED
24 virtual void dump(SkAnimateMaker* ); 24 virtual void dump(SkAnimateMaker* ) SK_OVERRIDE;
25 #endif 25 #endif
26 virtual void onEndElement(SkAnimateMaker& maker); 26 virtual void onEndElement(SkAnimateMaker& maker) SK_OVERRIDE;
27 protected: 27 protected:
28 bool resolveCommon(SkAnimateMaker& ); 28 bool resolveCommon(SkAnimateMaker& );
29 int fComponents; 29 int fComponents;
30 private: 30 private:
31 typedef SkAnimateBase INHERITED; 31 typedef SkAnimateBase INHERITED;
32 }; 32 };
33 33
34 #endif // SkAnimateField_DEFINED 34 #endif // SkAnimateField_DEFINED
OLDNEW
« no previous file with comments | « gm/xfermodes.cpp ('k') | src/animator/SkAnimateBase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698