| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2011 Google Inc. | 3 * Copyright 2011 Google Inc. |
| 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 #ifndef SkWriteBuffer_DEFINED | 9 #ifndef SkWriteBuffer_DEFINED |
| 10 #define SkWriteBuffer_DEFINED | 10 #define SkWriteBuffer_DEFINED |
| 11 | 11 |
| 12 #include "SkData.h" | 12 #include "SkData.h" |
| 13 #include "SkImage.h" | |
| 14 #include "SkPath.h" | 13 #include "SkPath.h" |
| 15 #include "SkPicture.h" | 14 #include "SkPicture.h" |
| 16 #include "SkPixelSerializer.h" | 15 #include "SkPixelSerializer.h" |
| 17 #include "SkRefCnt.h" | 16 #include "SkRefCnt.h" |
| 18 #include "SkWriter32.h" | 17 #include "SkWriter32.h" |
| 19 | 18 |
| 20 class SkBitmap; | 19 class SkBitmap; |
| 21 class SkBitmapHeap; | 20 class SkBitmapHeap; |
| 22 class SkFactorySet; | 21 class SkFactorySet; |
| 23 class SkFlattenable; | 22 class SkFlattenable; |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 SkNamedFactorySet* fNamedFactorySet; | 117 SkNamedFactorySet* fNamedFactorySet; |
| 119 SkWriter32 fWriter; | 118 SkWriter32 fWriter; |
| 120 | 119 |
| 121 SkBitmapHeap* fBitmapHeap; | 120 SkBitmapHeap* fBitmapHeap; |
| 122 SkRefCntSet* fTFSet; | 121 SkRefCntSet* fTFSet; |
| 123 | 122 |
| 124 SkAutoTUnref<SkPixelSerializer> fPixelSerializer; | 123 SkAutoTUnref<SkPixelSerializer> fPixelSerializer; |
| 125 }; | 124 }; |
| 126 | 125 |
| 127 #endif // SkWriteBuffer_DEFINED | 126 #endif // SkWriteBuffer_DEFINED |
| OLD | NEW |