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

Side by Side Diff: include/utils/SkLayer.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/private/SkTDArray.h ('k') | include/utils/SkNWayCanvas.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 /* 2 /*
3 * Copyright 2010 The Android Open Source Project 3 * Copyright 2010 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 SkLayer_DEFINED 10 #ifndef SkLayer_DEFINED
11 #define SkLayer_DEFINED 11 #define SkLayer_DEFINED
12 12
13 #include "../private/SkTDArray.h"
13 #include "SkRefCnt.h" 14 #include "SkRefCnt.h"
14 #include "SkTDArray.h"
15 #include "SkColor.h" 15 #include "SkColor.h"
16 #include "SkMatrix.h" 16 #include "SkMatrix.h"
17 #include "SkPoint.h" 17 #include "SkPoint.h"
18 #include "SkRect.h" 18 #include "SkRect.h"
19 #include "SkSize.h" 19 #include "SkSize.h"
20 20
21 class SkCanvas; 21 class SkCanvas;
22 22
23 class SkLayer : public SkRefCnt { 23 class SkLayer : public SkRefCnt {
24 24
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 SkMatrix fMatrix; 121 SkMatrix fMatrix;
122 SkMatrix fChildrenMatrix; 122 SkMatrix fChildrenMatrix;
123 uint32_t fFlags; 123 uint32_t fFlags;
124 124
125 SkTDArray<SkLayer*> m_children; 125 SkTDArray<SkLayer*> m_children;
126 126
127 typedef SkRefCnt INHERITED; 127 typedef SkRefCnt INHERITED;
128 }; 128 };
129 129
130 #endif 130 #endif
OLDNEW
« no previous file with comments | « include/private/SkTDArray.h ('k') | include/utils/SkNWayCanvas.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698