summaryrefslogtreecommitdiff
path: root/core/include
diff options
context:
space:
mode:
authorthestig <thestig@chromium.org>2016-04-05 15:53:32 -0700
committerCommit bot <commit-bot@chromium.org>2016-04-05 15:53:32 -0700
commit54750b570d32898c8ebd4fa59105bfd3b96043af (patch)
tree25ffed24af8fba5f2bc76266c74335f6b92c63eb /core/include
parente5984e92ff378a86118f1e6428dc325dbde9c409 (diff)
downloadpdfium-54750b570d32898c8ebd4fa59105bfd3b96043af.tar.xz
Remove dead image decoding/caching code.
Review URL: https://codereview.chromium.org/1860223002
Diffstat (limited to 'core/include')
-rw-r--r--core/include/fxcodec/fx_codec.h6
-rw-r--r--core/include/fxge/fx_dib.h1
2 files changed, 0 insertions, 7 deletions
diff --git a/core/include/fxcodec/fx_codec.h b/core/include/fxcodec/fx_codec.h
index a674eb7290..9db5e8c34b 100644
--- a/core/include/fxcodec/fx_codec.h
+++ b/core/include/fxcodec/fx_codec.h
@@ -118,8 +118,6 @@ class ICodec_ScanlineDecoder {
virtual uint32_t GetSrcOffset() = 0;
- virtual void DownScale(int dest_width, int dest_height) = 0;
-
virtual const uint8_t* GetScanline(int line) = 0;
virtual FX_BOOL SkipToScanline(int line, IFX_Pause* pPause) = 0;
@@ -131,10 +129,6 @@ class ICodec_ScanlineDecoder {
virtual int CountComps() = 0;
virtual int GetBPC() = 0;
-
- virtual FX_BOOL IsColorTransformed() = 0;
-
- virtual void ClearImageData() = 0;
};
class ICodec_FlateModule {
diff --git a/core/include/fxge/fx_dib.h b/core/include/fxge/fx_dib.h
index 09081786ef..59a494182c 100644
--- a/core/include/fxge/fx_dib.h
+++ b/core/include/fxge/fx_dib.h
@@ -181,7 +181,6 @@ class CFX_DIBSource {
FX_BOOL bFlipX,
int clip_left,
int clip_width) const = 0;
- virtual void SetDownSampleSize(int width, int height) {}
int GetBPP() const { return m_bpp; }