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/include/fxcrt | |
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/include/fxcrt')
-rw-r--r-- | core/include/fxcrt/fx_arb.h | 4 | ||||
-rw-r--r-- | core/include/fxcrt/fx_basic.h | 8 | ||||
-rw-r--r-- | core/include/fxcrt/fx_bidi.h | 4 | ||||
-rw-r--r-- | core/include/fxcrt/fx_coordinates.h | 2 | ||||
-rw-r--r-- | core/include/fxcrt/fx_memory.h | 2 | ||||
-rw-r--r-- | core/include/fxcrt/fx_safe_types.h | 4 | ||||
-rw-r--r-- | core/include/fxcrt/fx_stream.h | 2 | ||||
-rw-r--r-- | core/include/fxcrt/fx_string.h | 4 | ||||
-rw-r--r-- | core/include/fxcrt/fx_ucd.h | 2 |
9 files changed, 16 insertions, 16 deletions
diff --git a/core/include/fxcrt/fx_arb.h b/core/include/fxcrt/fx_arb.h index 6760ef3d79..112118d5f9 100644 --- a/core/include/fxcrt/fx_arb.h +++ b/core/include/fxcrt/fx_arb.h @@ -7,8 +7,8 @@ #ifndef CORE_INCLUDE_FXCRT_FX_ARB_H_ #define CORE_INCLUDE_FXCRT_FX_ARB_H_ -#include "fx_system.h" -#include "fx_ucd.h" +#include "core/include/fxcrt/fx_system.h" +#include "core/include/fxcrt/fx_ucd.h" class IFX_ArabicChar; diff --git a/core/include/fxcrt/fx_basic.h b/core/include/fxcrt/fx_basic.h index 7099e28447..3acdda7797 100644 --- a/core/include/fxcrt/fx_basic.h +++ b/core/include/fxcrt/fx_basic.h @@ -9,10 +9,10 @@ #include <algorithm> -#include "fx_memory.h" -#include "fx_stream.h" -#include "fx_string.h" -#include "fx_system.h" +#include "core/include/fxcrt/fx_memory.h" +#include "core/include/fxcrt/fx_stream.h" +#include "core/include/fxcrt/fx_string.h" +#include "core/include/fxcrt/fx_system.h" // The FX_ArraySize(arr) macro returns the # of elements in an array arr. // The expression is a compile-time constant, and therefore can be diff --git a/core/include/fxcrt/fx_bidi.h b/core/include/fxcrt/fx_bidi.h index ecf888b306..4ea17dae86 100644 --- a/core/include/fxcrt/fx_bidi.h +++ b/core/include/fxcrt/fx_bidi.h @@ -10,8 +10,8 @@ #include <memory> #include <vector> -#include "fx_string.h" -#include "fx_system.h" +#include "core/include/fxcrt/fx_string.h" +#include "core/include/fxcrt/fx_system.h" // Processes characters and group them into segments based on text direction. class CFX_BidiChar { diff --git a/core/include/fxcrt/fx_coordinates.h b/core/include/fxcrt/fx_coordinates.h index bb8f2f71f8..97462303a3 100644 --- a/core/include/fxcrt/fx_coordinates.h +++ b/core/include/fxcrt/fx_coordinates.h @@ -7,7 +7,7 @@ #ifndef CORE_INCLUDE_FXCRT_FX_COORDINATES_H_ #define CORE_INCLUDE_FXCRT_FX_COORDINATES_H_ -#include "fx_basic.h" +#include "core/include/fxcrt/fx_basic.h" template <class baseType> class CFX_PSVTemplate; diff --git a/core/include/fxcrt/fx_memory.h b/core/include/fxcrt/fx_memory.h index c607de2159..b49305aa32 100644 --- a/core/include/fxcrt/fx_memory.h +++ b/core/include/fxcrt/fx_memory.h @@ -7,7 +7,7 @@ #ifndef CORE_INCLUDE_FXCRT_FX_MEMORY_H_ #define CORE_INCLUDE_FXCRT_FX_MEMORY_H_ -#include "fx_system.h" +#include "core/include/fxcrt/fx_system.h" #ifdef __cplusplus extern "C" { diff --git a/core/include/fxcrt/fx_safe_types.h b/core/include/fxcrt/fx_safe_types.h index d10bdbeb1a..aec1ca7e96 100644 --- a/core/include/fxcrt/fx_safe_types.h +++ b/core/include/fxcrt/fx_safe_types.h @@ -7,8 +7,8 @@ #include <stdlib.h> // For size_t. -#include "fx_stream.h" // for FX_FILESIZE. -#include "fx_system.h" +#include "core/include/fxcrt/fx_stream.h" // for FX_FILESIZE. +#include "core/include/fxcrt/fx_system.h" #include "third_party/base/numerics/safe_math.h" typedef pdfium::base::CheckedNumeric<FX_DWORD> FX_SAFE_DWORD; diff --git a/core/include/fxcrt/fx_stream.h b/core/include/fxcrt/fx_stream.h index f98e44b846..263a355fff 100644 --- a/core/include/fxcrt/fx_stream.h +++ b/core/include/fxcrt/fx_stream.h @@ -7,7 +7,7 @@ #ifndef CORE_INCLUDE_FXCRT_FX_STREAM_H_ #define CORE_INCLUDE_FXCRT_FX_STREAM_H_ -#include "fx_string.h" +#include "core/include/fxcrt/fx_string.h" void* FX_OpenFolder(const FX_CHAR* path); void* FX_OpenFolder(const FX_WCHAR* path); diff --git a/core/include/fxcrt/fx_string.h b/core/include/fxcrt/fx_string.h index 6abcf52c76..36eba8d1c1 100644 --- a/core/include/fxcrt/fx_string.h +++ b/core/include/fxcrt/fx_string.h @@ -10,8 +10,8 @@ #include <stdint.h> // For intptr_t. #include <algorithm> -#include "fx_memory.h" -#include "fx_system.h" +#include "core/include/fxcrt/fx_memory.h" +#include "core/include/fxcrt/fx_system.h" class CFX_BinaryBuf; class CFX_ByteString; diff --git a/core/include/fxcrt/fx_ucd.h b/core/include/fxcrt/fx_ucd.h index 27812de13d..e091f8bd8a 100644 --- a/core/include/fxcrt/fx_ucd.h +++ b/core/include/fxcrt/fx_ucd.h @@ -7,7 +7,7 @@ #ifndef CORE_INCLUDE_FXCRT_FX_UCD_H_ #define CORE_INCLUDE_FXCRT_FX_UCD_H_ -#include "fx_basic.h" +#include "core/include/fxcrt/fx_basic.h" #define FX_BIDICLASSBITS 6 #define FX_BIDICLASSBITSMASK (31 << FX_BIDICLASSBITS) |