| OLD | NEW |
| 1 #include "SkPdfUtils.h" | 1 #include "SkPdfUtils.h" |
| 2 | 2 |
| 3 bool ArrayFromDictionary(const PdfMemDocument* pdfDoc, | |
| 4 const PdfDictionary& dict, | |
| 5 const char* key, | |
| 6 const char* abr, | |
| 7 SkPdfArray* data) {return false;} | |
| 8 | |
| 9 bool FileSpecFromDictionary(const PdfMemDocument* pdfDoc, | |
| 10 const PdfDictionary& dict, | |
| 11 const char* key, | |
| 12 const char* abr, | |
| 13 SkPdfFileSpec* data) {return false;} | |
| 14 | |
| 15 bool StreamFromDictionary(const PdfMemDocument* pdfDoc, | |
| 16 const PdfDictionary& dict, | |
| 17 const char* key, | |
| 18 const char* abr, | |
| 19 SkPdfStream** data); | |
| 20 | |
| 21 bool TreeFromDictionary(const PdfMemDocument* pdfDoc, | |
| 22 const PdfDictionary& dict, | |
| 23 const char* key, | |
| 24 const char* abr, | |
| 25 SkPdfTree** data) {return false;} | |
| 26 | |
| 27 bool DateFromDictionary(const PdfMemDocument* pdfDoc, | |
| 28 const PdfDictionary& dict, | |
| 29 const char* key, | |
| 30 const char* abr, | |
| 31 SkPdfDate* data) {return false;} | |
| 32 | |
| 33 bool FunctionFromDictionary(const PdfMemDocument* pdfDoc, | |
| 34 const PdfDictionary& dict, | |
| 35 const char* key, | |
| 36 const char* abr, | |
| 37 SkPdfFunction* data) {return false;} | |
| OLD | NEW |