| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2011 Skia | 2 * Copyright 2011 Skia |
| 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 SampleApp_DEFINED | 8 #ifndef SampleApp_DEFINED |
| 9 #define SampleApp_DEFINED | 9 #define SampleApp_DEFINED |
| 10 | 10 |
| 11 #include "SkOSMenu.h" | 11 #include "SkOSMenu.h" |
| 12 #include "SkPath.h" | 12 #include "SkPath.h" |
| 13 #include "SkPicture.h" | 13 #include "SkPicture.h" |
| 14 #include "SkPictureRecorder.h" |
| 14 #include "SkScalar.h" | 15 #include "SkScalar.h" |
| 15 #include "SkTDArray.h" | 16 #include "SkTDArray.h" |
| 16 #include "SkTouchGesture.h" | 17 #include "SkTouchGesture.h" |
| 17 #include "SkWindow.h" | 18 #include "SkWindow.h" |
| 18 | 19 |
| 19 class GrContext; | 20 class GrContext; |
| 20 class GrRenderTarget; | 21 class GrRenderTarget; |
| 21 | 22 |
| 22 class SkCanvas; | 23 class SkCanvas; |
| 23 class SkData; | 24 class SkData; |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 void postAnimatingEvent(); | 243 void postAnimatingEvent(); |
| 243 void installDrawFilter(SkCanvas*); | 244 void installDrawFilter(SkCanvas*); |
| 244 int findByTitle(const char*); | 245 int findByTitle(const char*); |
| 245 void listTitles(); | 246 void listTitles(); |
| 246 SkSize tileSize() const; | 247 SkSize tileSize() const; |
| 247 | 248 |
| 248 typedef SkOSWindow INHERITED; | 249 typedef SkOSWindow INHERITED; |
| 249 }; | 250 }; |
| 250 | 251 |
| 251 #endif | 252 #endif |
| OLD | NEW |