diff options
Diffstat (limited to 'xfa/fde/css/fde_cssstylesheet.cpp')
-rw-r--r-- | xfa/fde/css/fde_cssstylesheet.cpp | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/xfa/fde/css/fde_cssstylesheet.cpp b/xfa/fde/css/fde_cssstylesheet.cpp index 4477593359..5bbd9fd49e 100644 --- a/xfa/fde/css/fde_cssstylesheet.cpp +++ b/xfa/fde/css/fde_cssstylesheet.cpp @@ -50,9 +50,7 @@ int32_t GetCSSNameLen(const FX_WCHAR* psz, const FX_WCHAR* pEnd) { } // namespace CFDE_CSSStyleSheet::CFDE_CSSStyleSheet() - : m_wCodePage(FX_CODEPAGE_UTF8), - m_wRefCount(1), - m_dwMediaList(FDE_CSSMEDIATYPE_ALL) { + : m_wRefCount(1), m_dwMediaList(FDE_CSSMEDIATYPE_ALL) { ASSERT(m_dwMediaList > 0); } @@ -76,19 +74,10 @@ uint32_t CFDE_CSSStyleSheet::Release() { return dwRefCount; } -bool CFDE_CSSStyleSheet::GetUrl(CFX_WideString& szUrl) { - szUrl = m_szUrl; - return szUrl.GetLength() > 0; -} - uint32_t CFDE_CSSStyleSheet::GetMediaList() const { return m_dwMediaList; } -uint16_t CFDE_CSSStyleSheet::GetCodePage() const { - return m_wCodePage; -} - int32_t CFDE_CSSStyleSheet::CountRules() const { return pdfium::CollectionSize<int32_t>(m_RuleArray); } @@ -101,9 +90,6 @@ bool CFDE_CSSStyleSheet::LoadFromBuffer(const FX_WCHAR* pBuffer, int32_t iBufSize) { ASSERT(pBuffer && iBufSize > 0); - m_wCodePage = FX_CODEPAGE_UTF8; - m_szUrl = CFX_WideString(); - auto pSyntax = pdfium::MakeUnique<CFDE_CSSSyntaxParser>(); return pSyntax->Init(pBuffer, iBufSize) && LoadFromSyntax(pSyntax.get()); } |