diff options
author | Lei Zhang <thestig@chromium.org> | 2015-11-04 14:16:22 -0800 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-11-04 14:16:22 -0800 |
commit | 79f5a32175293620abe456554e10efb7c3f4e7c6 (patch) | |
tree | a6d9de63ae975548dacf1620a91f92ee9a6fb0a0 /public | |
parent | 14e83759abec5eca9c4da0b4e8cd5969375a00f4 (diff) | |
download | pdfium-79f5a32175293620abe456554e10efb7c3f4e7c6.tar.xz |
Make checkdeps --resolve-dotdot succeed.
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1419373005 .
Diffstat (limited to 'public')
-rw-r--r-- | public/DEPS | 8 | ||||
-rw-r--r-- | public/fpdf_dataavail.h | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/public/DEPS b/public/DEPS new file mode 100644 index 0000000000..d0005cacd6 --- /dev/null +++ b/public/DEPS @@ -0,0 +1,8 @@ +include_rules = [ + # public/ needs to be standalone. Explicitly disallow everything. + '-core', + '-fpdfsdk', + '-testing', + '-third_party', + '-v8', +] diff --git a/public/fpdf_dataavail.h b/public/fpdf_dataavail.h index 3ed7d285ed..0f8ff7d6d7 100644 --- a/public/fpdf_dataavail.h +++ b/public/fpdf_dataavail.h @@ -14,9 +14,11 @@ #define PDF_LINEARIZATION_UNKNOWN -1 #define PDF_NOT_LINEARIZED 0 #define PDF_LINEARIZED 1 + #define PDF_DATA_ERROR -1 #define PDF_DATA_NOTAVAIL 0 #define PDF_DATA_AVAIL 1 + #define PDF_FORM_ERROR -1 #define PDF_FORM_NOTAVAIL 0 #define PDF_FORM_AVAIL 1 |