diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-02-04 10:37:17 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-02-04 10:37:17 -0800 |
commit | 62120b79bbaca7430a8fc7ba0846b0a84f40542d (patch) | |
tree | 895210d653f0b016c536d8f0e2626b9f560a3304 /fpdfsdk | |
parent | c32dac1f9dcd75aeabd9ea1af257499270d2f041 (diff) | |
download | pdfium-62120b79bbaca7430a8fc7ba0846b0a84f40542d.tar.xz |
Prevent base::CheckedNumeric from leaking outside of pdfium.
Headers in /include directories should be free of implementation details
from third_party. Put the types into a new header outside of /include.
Requires https://codereview.chromium.org/902443003/ before a version containing this patch is rolled into chromium.
R=jam@chromium.org
Review URL: https://codereview.chromium.org/896023003
Diffstat (limited to 'fpdfsdk')
-rw-r--r-- | fpdfsdk/src/fpdfview.cpp | 1 | ||||
-rw-r--r-- | fpdfsdk/src/pdfwindow/PWL_Edit.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/fpdfsdk/src/fpdfview.cpp b/fpdfsdk/src/fpdfview.cpp index fba5d65bce..b751091a99 100644 --- a/fpdfsdk/src/fpdfview.cpp +++ b/fpdfsdk/src/fpdfview.cpp @@ -10,6 +10,7 @@ #include "../include/fsdk_rendercontext.h" #include "../include/fpdf_progressive.h" #include "../include/fpdf_ext.h" +#include "../../../core/src/fxcrt/fx_safe_types.h" #include "../../third_party/numerics/safe_conversions_impl.h" CPDF_CustomAccess::CPDF_CustomAccess(FPDF_FILEACCESS* pFileAccess) diff --git a/fpdfsdk/src/pdfwindow/PWL_Edit.cpp b/fpdfsdk/src/pdfwindow/PWL_Edit.cpp index bbac382967..1cbbf9a17e 100644 --- a/fpdfsdk/src/pdfwindow/PWL_Edit.cpp +++ b/fpdfsdk/src/pdfwindow/PWL_Edit.cpp @@ -12,6 +12,7 @@ #include "../../include/pdfwindow/PWL_Utils.h" #include "../../include/pdfwindow/PWL_Caret.h" #include "../../include/pdfwindow/PWL_FontMap.h" +#include "../../../core/src/fxcrt/fx_safe_types.h" /* ---------------------------- CPWL_Edit ------------------------------ */ |