diff options
author | Lei Zhang <thestig@chromium.org> | 2015-11-12 22:21:30 -0800 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-11-12 22:21:30 -0800 |
commit | bde53d25de8cba5657aa7f63a301288663fa58e5 (patch) | |
tree | f293739c7217fe0757c0b9737c0343d391b3dea3 /third_party/base/numerics | |
parent | d46f1c83038bbe05e5ad072f157b830b03706e8b (diff) | |
download | pdfium-bde53d25de8cba5657aa7f63a301288663fa58e5.tar.xz |
Merge to XFA: Remove relative includes.
That refer to parent directories.
TBR=dsinclair@chromium.org
Review URL: https://codereview.chromium.org/1434223002 .
(cherry picked from commit 22bc4227fbbda5a5e9abad2a2c0a98c04fe7f228)
Review URL: https://codereview.chromium.org/1439223003 .
Diffstat (limited to 'third_party/base/numerics')
-rw-r--r-- | third_party/base/numerics/safe_conversions.h | 2 | ||||
-rw-r--r-- | third_party/base/numerics/safe_conversions_impl.h | 4 | ||||
-rw-r--r-- | third_party/base/numerics/safe_math_impl.h | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/third_party/base/numerics/safe_conversions.h b/third_party/base/numerics/safe_conversions.h index e95608e0a5..dd0d1e47dc 100644 --- a/third_party/base/numerics/safe_conversions.h +++ b/third_party/base/numerics/safe_conversions.h @@ -7,8 +7,8 @@ #include <limits> -#include "../logging.h" #include "safe_conversions_impl.h" +#include "third_party/base/logging.h" namespace pdfium { namespace base { diff --git a/third_party/base/numerics/safe_conversions_impl.h b/third_party/base/numerics/safe_conversions_impl.h index f7afdfe31c..c974ee0590 100644 --- a/third_party/base/numerics/safe_conversions_impl.h +++ b/third_party/base/numerics/safe_conversions_impl.h @@ -8,8 +8,8 @@ #include <assert.h> #include <limits> -#include "../macros.h" -#include "../template_util.h" +#include "third_party/base/macros.h" +#include "third_party/base/template_util.h" namespace pdfium { namespace base { diff --git a/third_party/base/numerics/safe_math_impl.h b/third_party/base/numerics/safe_math_impl.h index 14897202bd..4209446694 100644 --- a/third_party/base/numerics/safe_math_impl.h +++ b/third_party/base/numerics/safe_math_impl.h @@ -11,9 +11,9 @@ #include <cstdlib> #include <limits> -#include "../macros.h" -#include "../template_util.h" #include "safe_conversions.h" +#include "third_party/base/macros.h" +#include "third_party/base/template_util.h" namespace pdfium { namespace base { |