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

Side by Side Diff: src/animator/SkDisplayPost.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 | « src/animator/SkDisplayNumber.h ('k') | src/animator/SkDisplayRandom.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 SkDisplayPost_DEFINED 10 #ifndef SkDisplayPost_DEFINED
(...skipping 10 matching lines...) Expand all
21 21
22 class SkPost : public SkDisplayable { 22 class SkPost : public SkDisplayable {
23 DECLARE_MEMBER_INFO(Post); 23 DECLARE_MEMBER_INFO(Post);
24 enum Mode { 24 enum Mode {
25 kDeferred, 25 kDeferred,
26 kImmediate 26 kImmediate
27 }; 27 };
28 SkPost(); 28 SkPost();
29 virtual ~SkPost(); 29 virtual ~SkPost();
30 virtual bool addChild(SkAnimateMaker& , SkDisplayable* child) SK_OVERRIDE; 30 virtual bool addChild(SkAnimateMaker& , SkDisplayable* child) SK_OVERRIDE;
31 virtual bool childrenNeedDisposing() const; 31 virtual bool childrenNeedDisposing() const SK_OVERRIDE;
32 virtual void dirty(); 32 virtual void dirty() SK_OVERRIDE;
33 #ifdef SK_DUMP_ENABLED 33 #ifdef SK_DUMP_ENABLED
34 virtual void dump(SkAnimateMaker* ); 34 virtual void dump(SkAnimateMaker* ) SK_OVERRIDE;
35 #endif 35 #endif
36 virtual bool enable(SkAnimateMaker& ); 36 virtual bool enable(SkAnimateMaker& ) SK_OVERRIDE;
37 virtual bool hasEnable() const; 37 virtual bool hasEnable() const SK_OVERRIDE;
38 virtual void onEndElement(SkAnimateMaker& ); 38 virtual void onEndElement(SkAnimateMaker& ) SK_OVERRIDE;
39 virtual void setChildHasID(); 39 virtual void setChildHasID() SK_OVERRIDE;
40 virtual bool setProperty(int index, SkScriptValue& ); 40 virtual bool setProperty(int index, SkScriptValue& ) SK_OVERRIDE;
41 protected: 41 protected:
42 SkMSec delay; 42 SkMSec delay;
43 SkString sink; 43 SkString sink;
44 // SkBool initialized; 44 // SkBool initialized;
45 Mode mode; 45 Mode mode;
46 SkEvent fEvent; 46 SkEvent fEvent;
47 SkAnimateMaker* fMaker; 47 SkAnimateMaker* fMaker;
48 SkTDDataArray fParts; 48 SkTDDataArray fParts;
49 SkEventSinkID fSinkID; 49 SkEventSinkID fSinkID;
50 SkAnimateMaker* fTargetMaker; 50 SkAnimateMaker* fTargetMaker;
51 SkBool8 fChildHasID; 51 SkBool8 fChildHasID;
52 SkBool8 fDirty; 52 SkBool8 fDirty;
53 private: 53 private:
54 void findSinkID(); 54 void findSinkID();
55 friend class SkDataInput; 55 friend class SkDataInput;
56 typedef SkDisplayable INHERITED; 56 typedef SkDisplayable INHERITED;
57 }; 57 };
58 58
59 #endif //SkDisplayPost_DEFINED 59 #endif //SkDisplayPost_DEFINED
OLDNEW
« no previous file with comments | « src/animator/SkDisplayNumber.h ('k') | src/animator/SkDisplayRandom.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698