diff options
author | dsinclair <dsinclair@chromium.org> | 2016-04-04 11:55:38 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-04 11:55:38 -0700 |
commit | 6e56a5ebc88e05fe0bf05624eba9aeed57fa6d60 (patch) | |
tree | 298fe044daa5bcee963fc9c8b398fd870c5b9571 /xfa/fxfa/parser/xfa_parser_imp.h | |
parent | 5838dbd3809d1d16945009c7f9d6111dda3797f0 (diff) | |
download | pdfium-6e56a5ebc88e05fe0bf05624eba9aeed57fa6d60.tar.xz |
Replace FDE_XMLSYNTAX defines with enum classes.
This CL replaces FDE_XMLSYNTAXMODE_ with FDE_XmlSyntaxState:: and
FDE_XMLSYNTAXSTATUS_ with FDE_XmlSyntaxResult::. The various variables also
have their names updated to make them clearer.
Review URL: https://codereview.chromium.org/1856003002
Diffstat (limited to 'xfa/fxfa/parser/xfa_parser_imp.h')
-rw-r--r-- | xfa/fxfa/parser/xfa_parser_imp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/xfa_parser_imp.h b/xfa/fxfa/parser/xfa_parser_imp.h index d81637516d..2485ddfcd2 100644 --- a/xfa/fxfa/parser/xfa_parser_imp.h +++ b/xfa/fxfa/parser/xfa_parser_imp.h @@ -134,7 +134,7 @@ class CXFA_XMLParser : public CFDE_XMLParser { CXFA_XMLNodeStack m_NodeStack; CFX_WideString m_ws1; CFX_WideString m_ws2; - uint32_t m_dwStatus; + FDE_XmlSyntaxResult m_syntaxParserResult; }; #endif // XFA_FXFA_PARSER_XFA_PARSER_IMP_H_ |