diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-07-27 11:23:48 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-07-27 16:00:12 +0000 |
commit | 0f25f014b3bff4229cb93a1ca850babc5dd382da (patch) | |
tree | 3dcc98af117703e4af87401582ba948eb0bdd840 /xfa/fxfa/cxfa_textparser.cpp | |
parent | f63e8133d7a767c6f162e700056ae8ba8512820d (diff) | |
download | pdfium-0f25f014b3bff4229cb93a1ca850babc5dd382da.tar.xz |
Move CXFA_CSSTagProvider to inner class of CXFA_TextParser
The TagProvider is only used in CXFA_TextParser. This CL moves the code
to a private inner class and renames to TagProvider.
Change-Id: Idd1926250fc59592cc923fde9ec6f8750cb10abf
Reviewed-on: https://pdfium-review.googlesource.com/9231
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/cxfa_textparser.cpp')
-rw-r--r-- | xfa/fxfa/cxfa_textparser.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/xfa/fxfa/cxfa_textparser.cpp b/xfa/fxfa/cxfa_textparser.cpp index 2bc0096962..c74cf50900 100644 --- a/xfa/fxfa/cxfa_textparser.cpp +++ b/xfa/fxfa/cxfa_textparser.cpp @@ -19,7 +19,6 @@ #include "xfa/fde/css/cfde_cssstylesheet.h" #include "xfa/fde/css/fde_css.h" #include "xfa/fgas/font/cfgas_fontmgr.h" -#include "xfa/fxfa/cxfa_csstagprovider.h" #include "xfa/fxfa/cxfa_ffapp.h" #include "xfa/fxfa/cxfa_ffdoc.h" #include "xfa/fxfa/cxfa_fontmgr.h" @@ -269,9 +268,9 @@ bool CXFA_TextParser::TagValidate(const CFX_WideString& wsName) const { FX_HashCode_GetW(wsName.AsStringC(), true)); } -std::unique_ptr<CXFA_CSSTagProvider> CXFA_TextParser::ParseTagInfo( +std::unique_ptr<CXFA_TextParser::TagProvider> CXFA_TextParser::ParseTagInfo( CFX_XMLNode* pXMLNode) { - auto tagProvider = pdfium::MakeUnique<CXFA_CSSTagProvider>(); + auto tagProvider = pdfium::MakeUnique<TagProvider>(); CFX_WideString wsName; if (pXMLNode->GetType() == FX_XMLNODE_Element) { @@ -623,3 +622,8 @@ bool CXFA_TextParser::GetTabstops(CFDE_CSSComputedStyle* pStyle, } return true; } + +CXFA_TextParser::TagProvider::TagProvider() + : m_bTagAvailable(false), m_bContent(false) {} + +CXFA_TextParser::TagProvider::~TagProvider() {} |