| OLD | NEW |
| 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 SkDump_DEFINED | 10 #ifndef SkDump_DEFINED |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 bool hasEnable() const override; | 25 bool hasEnable() const override; |
| 26 static void GetEnumString(SkDisplayTypes , int index, SkString* result); | 26 static void GetEnumString(SkDisplayTypes , int index, SkString* result); |
| 27 SkBool displayList; | 27 SkBool displayList; |
| 28 SkBool eventList; | 28 SkBool eventList; |
| 29 SkBool events; | 29 SkBool events; |
| 30 SkString name; | 30 SkString name; |
| 31 SkBool groups; | 31 SkBool groups; |
| 32 SkBool posts; | 32 SkBool posts; |
| 33 SkString script; | 33 SkString script; |
| 34 #else | 34 #else |
| 35 virtual bool enable(SkAnimateMaker & ); | 35 bool enable(SkAnimateMaker & ) override; |
| 36 virtual bool hasEnable() const; | 36 bool hasEnable() const override; |
| 37 virtual bool setProperty(int index, SkScriptValue& ); | 37 bool setProperty(int index, SkScriptValue& ) override; |
| 38 #endif | 38 #endif |
| 39 }; | 39 }; |
| 40 | 40 |
| 41 | 41 |
| 42 #endif // SkDump_DEFINED | 42 #endif // SkDump_DEFINED |
| OLD | NEW |