diff options
author | Lei Zhang <thestig@chromium.org> | 2015-11-12 21:17:40 -0800 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-11-12 21:17:40 -0800 |
commit | 22bc4227fbbda5a5e9abad2a2c0a98c04fe7f228 (patch) | |
tree | 2efddfef7327e6ab3af34305ee451563abc62bf7 /core/include/fxge | |
parent | 4274ea205ca2219f6a4cfc54025284c1aa3b14b8 (diff) | |
download | pdfium-22bc4227fbbda5a5e9abad2a2c0a98c04fe7f228.tar.xz |
Remove relative includes.
That refer to parent directories.
R=dsinclair@chromium.org
Review URL: https://codereview.chromium.org/1434223002 .
Diffstat (limited to 'core/include/fxge')
-rw-r--r-- | core/include/fxge/fpf.h | 2 | ||||
-rw-r--r-- | core/include/fxge/fx_dib.h | 4 | ||||
-rw-r--r-- | core/include/fxge/fx_font.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/core/include/fxge/fpf.h b/core/include/fxge/fpf.h index e65fae0bbd..11e2bf1e40 100644 --- a/core/include/fxge/fpf.h +++ b/core/include/fxge/fpf.h @@ -7,7 +7,7 @@ #ifndef CORE_INCLUDE_FXGE_FPF_H_ #define CORE_INCLUDE_FXGE_FPF_H_ -#include "../fxcrt/fx_coordinates.h" +#include "core/include/fxcrt/fx_coordinates.h" class IFPF_FontMgr; diff --git a/core/include/fxge/fx_dib.h b/core/include/fxge/fx_dib.h index e22ab58065..e57b3c9a83 100644 --- a/core/include/fxge/fx_dib.h +++ b/core/include/fxge/fx_dib.h @@ -7,8 +7,8 @@ #ifndef CORE_INCLUDE_FXGE_FX_DIB_H_ #define CORE_INCLUDE_FXGE_FX_DIB_H_ -#include "../fxcrt/fx_basic.h" -#include "../fxcrt/fx_coordinates.h" +#include "core/include/fxcrt/fx_basic.h" +#include "core/include/fxcrt/fx_coordinates.h" enum FXDIB_Format { FXDIB_Invalid = 0, diff --git a/core/include/fxge/fx_font.h b/core/include/fxge/fx_font.h index bc76c6e2e2..277b45ebaa 100644 --- a/core/include/fxge/fx_font.h +++ b/core/include/fxge/fx_font.h @@ -9,7 +9,7 @@ #include <map> -#include "../fxcrt/fx_system.h" +#include "core/include/fxcrt/fx_system.h" #include "fx_dib.h" #include "third_party/base/nonstd_unique_ptr.h" |