diff options
author | Ryan Harrison <rharrison@chromium.org> | 2018-02-06 17:10:25 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-02-06 17:10:25 +0000 |
commit | 6bf5789c25686bf6ea1bc1f7c8ef2dc7e4bbc212 (patch) | |
tree | f6d0f030682f38f69dd5aa922aa02b3a7ba2593a /core | |
parent | cdaf802ceafcfb2e547ffe96729445c0f1c6154a (diff) | |
download | pdfium-6bf5789c25686bf6ea1bc1f7c8ef2dc7e4bbc212.tar.xz |
Break unneeded dep on Bmp codec in Gif codec
BUG=pdfium:1006
Change-Id: I84d2a13ac7b24e7f2f5cba8765d6433860241b58
Reviewed-on: https://pdfium-review.googlesource.com/25710
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'core')
-rw-r--r-- | core/fxcodec/gif/cfx_lzwdecompressor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fxcodec/gif/cfx_lzwdecompressor.cpp b/core/fxcodec/gif/cfx_lzwdecompressor.cpp index edff8c4f4b..09df6e767b 100644 --- a/core/fxcodec/gif/cfx_lzwdecompressor.cpp +++ b/core/fxcodec/gif/cfx_lzwdecompressor.cpp @@ -7,10 +7,10 @@ #include "core/fxcodec/gif/cfx_lzwdecompressor.h" #include <algorithm> +#include <cstring> #include <memory> #include <utility> -#include "core/fxcodec/bmp/fx_bmp.h" #include "third_party/base/numerics/safe_math.h" #include "third_party/base/ptr_util.h" #include "third_party/base/stl_util.h" |