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

Side by Side Diff: include/views/SkWindow.h

Issue 1707213002: Move SkTDArray to private. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 10 months 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 | « include/views/SkWidget.h ('k') | include/xml/SkXMLWriter.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 * 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
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
OLDNEW
« no previous file with comments | « include/views/SkWidget.h ('k') | include/xml/SkXMLWriter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698