| OLD | NEW |
| 1 /* |
| 2 * Copyright 2013 Google Inc. |
| 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. |
| 6 */ |
| 1 | 7 |
| 2 #include "SkPdfNativeObject.h" | 8 #include "SkPdfNativeObject.h" |
| 3 | 9 |
| 4 // TODO(edisonn): mac builder does not find the header ... but from headers is o
k | 10 // TODO(edisonn): mac builder does not find the header ... but from headers is o
k |
| 5 //#include "SkPdfStreamCommonDictionary_autogen.h" | 11 //#include "SkPdfStreamCommonDictionary_autogen.h" |
| 6 #include "SkPdfHeaders_autogen.h" | 12 #include "SkPdfHeaders_autogen.h" |
| 7 | 13 |
| 8 #include "SkFlate.h" | 14 #include "SkFlate.h" |
| 9 #include "SkStream.h" | 15 #include "SkStream.h" |
| 10 #include "SkPdfNativeTokenizer.h" | 16 #include "SkPdfNativeTokenizer.h" |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 delete (SkBitmap*)fData; | 109 delete (SkBitmap*)fData; |
| 104 break; | 110 break; |
| 105 default: | 111 default: |
| 106 SkASSERT(false); | 112 SkASSERT(false); |
| 107 break; | 113 break; |
| 108 } | 114 } |
| 109 } | 115 } |
| 110 fData = NULL; | 116 fData = NULL; |
| 111 fDataType = kEmpty_Data; | 117 fDataType = kEmpty_Data; |
| 112 } | 118 } |
| OLD | NEW |