summaryrefslogtreecommitdiff
path: root/core/include
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2016-03-09 17:00:09 -0800
committerTom Sepez <tsepez@chromium.org>2016-03-09 17:00:09 -0800
commitc7c2115d33c5e6cee5e3d5215e3357b859f5990e (patch)
tree3238db19814a04da55de12e66773bf966edc5aff /core/include
parent70d54be5ab45d26a7ec6b125ea09f8b6a89a3b6f (diff)
downloadpdfium-c7c2115d33c5e6cee5e3d5215e3357b859f5990e.tar.xz
Move CPDF_NumberTree to fpdfdoc.
It's not used anywhere in fpdfapi, and can become restricted to fpdfoc/. R=ochang@chromium.org Review URL: https://codereview.chromium.org/1776713004 .
Diffstat (limited to 'core/include')
-rw-r--r--core/include/fpdfapi/fpdf_parser.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/core/include/fpdfapi/fpdf_parser.h b/core/include/fpdfapi/fpdf_parser.h
index 2134d0159b..7d7243c90f 100644
--- a/core/include/fpdfapi/fpdf_parser.h
+++ b/core/include/fpdfapi/fpdf_parser.h
@@ -201,16 +201,6 @@ FX_DWORD RunLengthDecode(const uint8_t* src_buf,
FX_DWORD& dest_size);
bool IsSignatureDict(const CPDF_Dictionary* pDict);
-class CPDF_NumberTree {
- public:
- CPDF_NumberTree(CPDF_Dictionary* pRoot) { m_pRoot = pRoot; }
-
- CPDF_Object* LookupValue(int num);
-
- protected:
- CPDF_Dictionary* m_pRoot;
-};
-
class IFX_FileAvail {
public:
virtual ~IFX_FileAvail() {}