diff options
author | Lei Zhang <thestig@chromium.org> | 2015-11-06 15:53:26 -0800 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-11-06 15:53:26 -0800 |
commit | e6cab2252ee48212420b52735afa6346bb256e2c (patch) | |
tree | 1ffbed054fd1c73dd1da6cd3393b82665c21c6ff /xfa/src/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.cpp | |
parent | b4e7f304af0ad92d20f952e6634000d177974f47 (diff) | |
download | pdfium-e6cab2252ee48212420b52735afa6346bb256e2c.tar.xz |
XFA: Actually fix all relative includes to third_party.
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1413253003 .
Diffstat (limited to 'xfa/src/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.cpp')
-rw-r--r-- | xfa/src/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/xfa/src/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.cpp b/xfa/src/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.cpp index e14b2b37c4..af63d19bfe 100644 --- a/xfa/src/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.cpp +++ b/xfa/src/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.cpp @@ -20,13 +20,16 @@ * limitations under the License.
*/
+#include "BC_PDF417DecodedBitStreamParser.h"
+
#include <stdlib.h>
-#include "../barcode.h"
+
#include "../BC_DecoderResult.h"
+#include "../barcode.h"
#include "../common/BC_CommonDecoderResult.h"
-#include "../../../../third_party/bigint/BigIntegerLibrary.hh"
#include "BC_PDF417ResultMetadata.h"
-#include "BC_PDF417DecodedBitStreamParser.h"
+#include "third_party/bigint/BigIntegerLibrary.hh"
+
#define TEXT_COMPACTION_MODE_LATCH 900
#define BYTE_COMPACTION_MODE_LATCH 901
#define NUMERIC_COMPACTION_MODE_LATCH 902
|