Index: xfa/fde/css/fde_css.h |
diff --git a/xfa/fde/css/fde_css.h b/xfa/fde/css/fde_css.h |
index f1a8ee93c99135a3914007465c4d36c7017769bc..566a94710c26157520cf0413cb91f6dc181b6a6e 100644 |
--- a/xfa/fde/css/fde_css.h |
+++ b/xfa/fde/css/fde_css.h |
@@ -23,7 +23,6 @@ class IFDE_CSSRule; |
class IFDE_CSSSelector; |
class IFDE_CSSStyleSelector; |
class IFDE_CSSStyleSheet; |
-class IFDE_CSSStyleSheetCache; |
class IFDE_CSSSyntaxParser; |
class IFDE_CSSTagProvider; |
class IFDE_CSSValue; |
@@ -453,18 +452,6 @@ class IFDE_CSSStyleSheet : public IFX_Unknown { |
}; |
typedef CFX_ArrayTemplate<IFDE_CSSStyleSheet*> CFDE_CSSStyleSheetArray; |
-class IFDE_CSSStyleSheetCache { |
- public: |
- static IFDE_CSSStyleSheetCache* Create(); |
- virtual ~IFDE_CSSStyleSheetCache() {} |
- virtual void Release() = 0; |
- virtual void SetMaxItems(int32_t iMaxCount = 5) = 0; |
- virtual void AddStyleSheet(const CFX_ByteStringC& szKey, |
- IFDE_CSSStyleSheet* pStyleSheet) = 0; |
- virtual IFDE_CSSStyleSheet* GetStyleSheet( |
- const CFX_ByteStringC& szKey) const = 0; |
- virtual void RemoveStyleSheet(const CFX_ByteStringC& szKey) = 0; |
-}; |
enum FDE_CSSSYNTAXSTATUS { |
FDE_CSSSYNTAXSTATUS_Error, |
FDE_CSSSYNTAXSTATUS_EOS, |