| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2016 Google Inc. | 2 * Copyright 2016 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #ifndef Slide_DEFINED | 8 #ifndef Slide_DEFINED |
| 9 #define Slide_DEFINED | 9 #define Slide_DEFINED |
| 10 | 10 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 virtual void unload() {} | 27 virtual void unload() {} |
| 28 | 28 |
| 29 SkString getName() { return fName; } | 29 SkString getName() { return fName; } |
| 30 | 30 |
| 31 protected: | 31 protected: |
| 32 SkString fName; | 32 SkString fName; |
| 33 }; | 33 }; |
| 34 | 34 |
| 35 | 35 |
| 36 #endif | 36 #endif |
| OLD | NEW |