diff options
author | dan sinclair <dsinclair@chromium.org> | 2017-03-13 13:26:51 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-03-13 17:48:39 +0000 |
commit | d8f45b3c9f6bc16c74e17b7269269193b0d94f18 (patch) | |
tree | 9306edc54baac391497533757fe0e952363495c2 /xfa/fxfa/parser | |
parent | 6fcea1f851880b452bbaaeeeefefa48b49cab331 (diff) | |
download | pdfium-d8f45b3c9f6bc16c74e17b7269269193b0d94f18.tar.xz |
Replace discrete array with a map.
There is one use of the discrete array, GFGAS_GEFont. This CL replaces
that usage with a std::map and removes the fgas_util classes.
Change-Id: Ic45812168e9487ebac08abaa131c58080a949d69
Reviewed-on: https://pdfium-review.googlesource.com/2953
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser')
-rw-r--r-- | xfa/fxfa/parser/xfa_object.h | 1 | ||||
-rw-r--r-- | xfa/fxfa/parser/xfa_utils.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/xfa_object.h b/xfa/fxfa/parser/xfa_object.h index 8bdd264c92..e4f7ab2cb1 100644 --- a/xfa/fxfa/parser/xfa_object.h +++ b/xfa/fxfa/parser/xfa_object.h @@ -9,6 +9,7 @@ #include <map> +#include "core/fxcrt/fx_basic.h" #include "fxjs/cfxjse_arguments.h" #include "xfa/fde/xml/fde_xml.h" #include "xfa/fxfa/parser/xfa_utils.h" diff --git a/xfa/fxfa/parser/xfa_utils.h b/xfa/fxfa/parser/xfa_utils.h index 865d0c9fae..3e95612132 100644 --- a/xfa/fxfa/parser/xfa_utils.h +++ b/xfa/fxfa/parser/xfa_utils.h @@ -9,7 +9,6 @@ #include "xfa/fde/xml/fde_xml.h" #include "xfa/fgas/crt/fgas_stream.h" -#include "xfa/fgas/crt/fgas_utils.h" #include "xfa/fxfa/fxfa_basic.h" class CFDE_XMLElement; |