diff options
author | dsinclair <dsinclair@chromium.org> | 2016-05-19 11:37:20 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-05-19 11:37:20 -0700 |
commit | f8d8ac4fca2774550f3fbd3a21bbc1e326028c18 (patch) | |
tree | 70ab1f2ba023573e5ae076e46ab2621a9411b28b /xfa/fde/css | |
parent | bc8a64029f898286c3dcad3a6cecdc98ef30b139 (diff) | |
download | pdfium-f8d8ac4fca2774550f3fbd3a21bbc1e326028c18.tar.xz |
Expand some typedefs to the original types
Sevearal typedefs are only used once or twice. Expand and remove the typedef.
Review-Url: https://codereview.chromium.org/1995033002
Diffstat (limited to 'xfa/fde/css')
-rw-r--r-- | xfa/fde/css/fde_csscache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fde/css/fde_csscache.h b/xfa/fde/css/fde_csscache.h index 2cf007db79..28962e45eb 100644 --- a/xfa/fde/css/fde_csscache.h +++ b/xfa/fde/css/fde_csscache.h @@ -46,7 +46,7 @@ class FDE_CSSTagCache : public CFX_Target { uint32_t dwIDHash; uint32_t dwTagHash; int32_t iClassIndex; - CFDE_DWordArray dwClassHashs; + CFX_BaseArrayTemplate<uint32_t> dwClassHashs; }; typedef CFX_ObjectStackTemplate<FDE_CSSTagCache> CFDE_CSSTagStack; |