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/BC_Writer.h | |
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/BC_Writer.h')
-rw-r--r-- | xfa/src/fxbarcode/BC_Writer.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/xfa/src/fxbarcode/BC_Writer.h b/xfa/src/fxbarcode/BC_Writer.h index 5684096925..b895b81ae4 100644 --- a/xfa/src/fxbarcode/BC_Writer.h +++ b/xfa/src/fxbarcode/BC_Writer.h @@ -4,9 +4,13 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#ifndef _BC_WRITER_H_
-#define _BC_WRITER_H_
-class CBC_Writer;
+#ifndef XFA_SRC_FXBARCODE_BC_WRITER_H_
+#define XFA_SRC_FXBARCODE_BC_WRITER_H_
+
+#include "core/include/fxcrt/fx_string.h"
+#include "core/include/fxge/fx_dib.h"
+#include "xfa/src/fxbarcode/utils.h"
+
class CBC_Writer {
public:
CBC_Writer();
@@ -41,4 +45,5 @@ class CBC_Writer { FX_ARGB m_barColor;
FX_ARGB m_backgroundColor;
};
-#endif
+
+#endif // XFA_SRC_FXBARCODE_BC_WRITER_H_
|