Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(168)

Side by Side Diff: experimental/PdfViewer/SkPdfUtils.cpp

Issue 18042005: isolate podofo to prepare for native parser, autogenerate PDF API during build (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « experimental/PdfViewer/SkPdfUtils.h ('k') | experimental/PdfViewer/autogen.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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;}
OLDNEW
« no previous file with comments | « experimental/PdfViewer/SkPdfUtils.h ('k') | experimental/PdfViewer/autogen.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698