diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2016-02-17 16:54:43 -0500 |
---|---|---|
committer | Dan Sinclair <dsinclair@chromium.org> | 2016-02-17 16:54:43 -0500 |
commit | efbc1912f10f5a53e7df3a24ebfd6b78412f0bba (patch) | |
tree | 6f2c0d3d8d884be0af857a0d696ce57d310cf976 /core/src/fxge/dib | |
parent | 99afc62bb330118b5d44da9799b75b4c20926592 (diff) | |
download | pdfium-efbc1912f10f5a53e7df3a24ebfd6b78412f0bba.tar.xz |
Expand all paths to be based off pdfium/ directory
This CL runs a script over the source and updates the include files to be
a full path from the pdfium/ directory.
BUG=pdfium:65
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1707923002 .
Diffstat (limited to 'core/src/fxge/dib')
-rw-r--r-- | core/src/fxge/dib/fx_dib_composite.cpp | 2 | ||||
-rw-r--r-- | core/src/fxge/dib/fx_dib_engine.cpp | 2 | ||||
-rw-r--r-- | core/src/fxge/dib/fx_dib_main.cpp | 2 | ||||
-rw-r--r-- | core/src/fxge/dib/fx_dib_transform.cpp | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/core/src/fxge/dib/fx_dib_composite.cpp b/core/src/fxge/dib/fx_dib_composite.cpp index e284f62050..56bde94223 100644 --- a/core/src/fxge/dib/fx_dib_composite.cpp +++ b/core/src/fxge/dib/fx_dib_composite.cpp @@ -6,7 +6,7 @@ #include "core/include/fxge/fx_ge.h" #include "core/include/fxcodec/fx_codec.h" -#include "dib_int.h" +#include "core/src/fxge/dib/dib_int.h" const uint8_t _color_sqrt[256] = { 0x00, 0x03, 0x07, 0x0B, 0x0F, 0x12, 0x16, 0x19, 0x1D, 0x20, 0x23, 0x26, diff --git a/core/src/fxge/dib/fx_dib_engine.cpp b/core/src/fxge/dib/fx_dib_engine.cpp index 16772ed003..de56567c51 100644 --- a/core/src/fxge/dib/fx_dib_engine.cpp +++ b/core/src/fxge/dib/fx_dib_engine.cpp @@ -8,7 +8,7 @@ #include "core/include/fxge/fx_dib.h" #include "core/include/fxge/fx_ge.h" -#include "dib_int.h" +#include "core/src/fxge/dib/dib_int.h" void CWeightTable::Calc(int dest_len, int dest_min, diff --git a/core/src/fxge/dib/fx_dib_main.cpp b/core/src/fxge/dib/fx_dib_main.cpp index 87c113d4ae..484797d3cf 100644 --- a/core/src/fxge/dib/fx_dib_main.cpp +++ b/core/src/fxge/dib/fx_dib_main.cpp @@ -10,7 +10,7 @@ #include "core/include/fxge/fx_ge.h" #include "core/include/fxcodec/fx_codec.h" -#include "dib_int.h" +#include "core/src/fxge/dib/dib_int.h" FX_BOOL ConvertBuffer(FXDIB_Format dest_format, uint8_t* dest_buf, diff --git a/core/src/fxge/dib/fx_dib_transform.cpp b/core/src/fxge/dib/fx_dib_transform.cpp index d9740e0111..01c37d207e 100644 --- a/core/src/fxge/dib/fx_dib_transform.cpp +++ b/core/src/fxge/dib/fx_dib_transform.cpp @@ -4,7 +4,7 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#include "dib_int.h" +#include "core/src/fxge/dib/dib_int.h" #include "core/include/fxge/fx_dib.h" |