| OLD | NEW |
| 1 | |
| 2 /* | 1 /* |
| 3 * Copyright 2011 Google Inc. | 2 * Copyright 2011 Google Inc. |
| 4 * | 3 * |
| 5 * 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 |
| 6 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 7 */ | 6 */ |
| 8 | 7 |
| 9 | |
| 10 #ifndef SkPDFDevice_DEFINED | 8 #ifndef SkPDFDevice_DEFINED |
| 11 #define SkPDFDevice_DEFINED | 9 #define SkPDFDevice_DEFINED |
| 12 | 10 |
| 13 #include "SkDevice.h" | |
| 14 #include "SkBitmap.h" | 11 #include "SkBitmap.h" |
| 15 #include "SkCanvas.h" | 12 #include "SkCanvas.h" |
| 13 #include "SkClipStack.h" |
| 14 #include "SkDevice.h" |
| 16 #include "SkPaint.h" | 15 #include "SkPaint.h" |
| 17 #include "SkPath.h" | 16 #include "SkPath.h" |
| 18 #include "SkPicture.h" | 17 #include "SkPicture.h" |
| 19 #include "SkRect.h" | 18 #include "SkRect.h" |
| 20 #include "SkRefCnt.h" | 19 #include "SkRefCnt.h" |
| 21 #include "SkStream.h" | 20 #include "SkStream.h" |
| 22 #include "SkTDArray.h" | 21 #include "SkTDArray.h" |
| 23 #include "SkTemplates.h" | 22 #include "SkTemplates.h" |
| 24 | 23 |
| 25 class SkPDFArray; | 24 class SkPDFArray; |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 | 295 |
| 297 typedef SkBaseDevice INHERITED; | 296 typedef SkBaseDevice INHERITED; |
| 298 | 297 |
| 299 // TODO(edisonn): Only SkDocument_PDF and SkPDFImageShader should be able to
create | 298 // TODO(edisonn): Only SkDocument_PDF and SkPDFImageShader should be able to
create |
| 300 // an SkPDFDevice | 299 // an SkPDFDevice |
| 301 //friend class SkDocument_PDF; | 300 //friend class SkDocument_PDF; |
| 302 //friend class SkPDFImageShader; | 301 //friend class SkPDFImageShader; |
| 303 }; | 302 }; |
| 304 | 303 |
| 305 #endif | 304 #endif |
| OLD | NEW |