summaryrefslogtreecommitdiff
path: root/core/include/fxcrt
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2016-01-20 12:26:26 -0800
committerTom Sepez <tsepez@chromium.org>2016-01-20 12:26:26 -0800
commit2a312f90dbf5da8b930dee814db786965792961a (patch)
tree6f54bc1c4b57ab558a3afd91153d4f6250affc40 /core/include/fxcrt
parentf13d510cf267c27f4c123494de67670ec201cedc (diff)
downloadpdfium-2a312f90dbf5da8b930dee814db786965792961a.tar.xz
Remove CFX_CMapByteStringToPtr
R=ochang@chromium.org Review URL: https://codereview.chromium.org/1580493002 .
Diffstat (limited to 'core/include/fxcrt')
-rw-r--r--core/include/fxcrt/fx_basic.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/core/include/fxcrt/fx_basic.h b/core/include/fxcrt/fx_basic.h
index 4a3b0ceb2f..0635b0605d 100644
--- a/core/include/fxcrt/fx_basic.h
+++ b/core/include/fxcrt/fx_basic.h
@@ -637,35 +637,6 @@ class CFX_MapPtrToPtr {
CAssoc* GetAssocAt(void* key, FX_DWORD& hash) const;
};
-class CFX_CMapByteStringToPtr {
- public:
- CFX_CMapByteStringToPtr();
-
- ~CFX_CMapByteStringToPtr();
-
- void RemoveAll();
-
- FX_POSITION GetStartPosition() const;
-
- void GetNextAssoc(FX_POSITION& rNextPosition,
- CFX_ByteString& rKey,
- void*& rValue) const;
-
- void* GetNextValue(FX_POSITION& rNextPosition) const;
-
- FX_BOOL Lookup(const CFX_ByteStringC& key, void*& rValue) const;
-
- void SetAt(const CFX_ByteStringC& key, void* value);
-
- void RemoveKey(const CFX_ByteStringC& key);
-
- int GetCount() const;
-
- void AddValue(const CFX_ByteStringC& key, void* pValue);
-
- private:
- CFX_BaseSegmentedArray m_Buffer;
-};
class CFX_PtrList {
protected:
struct CNode {