| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2006 The Android Open Source Project | 2 * Copyright 2006 The Android Open Source Project |
| 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 SkWindow_DEFINED | 8 #ifndef SkWindow_DEFINED |
| 9 #define SkWindow_DEFINED | 9 #define SkWindow_DEFINED |
| 10 | 10 |
| 11 #include "../private/SkTDArray.h" |
| 11 #include "SkView.h" | 12 #include "SkView.h" |
| 12 #include "SkBitmap.h" | 13 #include "SkBitmap.h" |
| 13 #include "SkMatrix.h" | 14 #include "SkMatrix.h" |
| 14 #include "SkRegion.h" | 15 #include "SkRegion.h" |
| 15 #include "SkEvent.h" | 16 #include "SkEvent.h" |
| 16 #include "SkKey.h" | 17 #include "SkKey.h" |
| 17 #include "SkSurfaceProps.h" | 18 #include "SkSurfaceProps.h" |
| 18 #include "SkTDArray.h" | |
| 19 | 19 |
| 20 class SkSurface; | 20 class SkSurface; |
| 21 class SkOSMenu; | 21 class SkOSMenu; |
| 22 | 22 |
| 23 #if SK_SUPPORT_GPU | 23 #if SK_SUPPORT_GPU |
| 24 struct GrGLInterface; | 24 struct GrGLInterface; |
| 25 class GrContext; | 25 class GrContext; |
| 26 class GrRenderTarget; | 26 class GrRenderTarget; |
| 27 #endif | 27 #endif |
| 28 | 28 |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 #include "SkOSWindow_Win.h" | 124 #include "SkOSWindow_Win.h" |
| 125 #elif defined(SK_BUILD_FOR_ANDROID) | 125 #elif defined(SK_BUILD_FOR_ANDROID) |
| 126 #include "SkOSWindow_Android.h" | 126 #include "SkOSWindow_Android.h" |
| 127 #elif defined(SK_BUILD_FOR_UNIX) | 127 #elif defined(SK_BUILD_FOR_UNIX) |
| 128 #include "SkOSWindow_Unix.h" | 128 #include "SkOSWindow_Unix.h" |
| 129 #elif defined(SK_BUILD_FOR_IOS) | 129 #elif defined(SK_BUILD_FOR_IOS) |
| 130 #include "SkOSWindow_iOS.h" | 130 #include "SkOSWindow_iOS.h" |
| 131 #endif | 131 #endif |
| 132 | 132 |
| 133 #endif | 133 #endif |
| OLD | NEW |