OLD | NEW |
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 SkPDFTypes_DEFINED | 10 #ifndef SkPDFTypes_DEFINED |
11 #define SkPDFTypes_DEFINED | 11 #define SkPDFTypes_DEFINED |
12 | 12 |
| 13 #include "SkMutex.h" |
13 #include "SkRefCnt.h" | 14 #include "SkRefCnt.h" |
14 #include "SkScalar.h" | 15 #include "SkScalar.h" |
15 #include "SkString.h" | 16 #include "SkString.h" |
16 #include "SkTDArray.h" | 17 #include "SkTDArray.h" |
17 #include "SkTSet.h" | 18 #include "SkTSet.h" |
18 #include "SkTypes.h" | 19 #include "SkTypes.h" |
19 | 20 |
20 class SkPDFCatalog; | 21 class SkPDFCatalog; |
21 class SkWStream; | 22 class SkWStream; |
22 | 23 |
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 | 405 |
405 mutable SkMutex fMutex; // protects modifications to fValue | 406 mutable SkMutex fMutex; // protects modifications to fValue |
406 SkTDArray<struct Rec> fValue; | 407 SkTDArray<struct Rec> fValue; |
407 | 408 |
408 SkPDFObject* append(SkPDFName* key, SkPDFObject* value); | 409 SkPDFObject* append(SkPDFName* key, SkPDFObject* value); |
409 | 410 |
410 typedef SkPDFObject INHERITED; | 411 typedef SkPDFObject INHERITED; |
411 }; | 412 }; |
412 | 413 |
413 #endif | 414 #endif |
OLD | NEW |