diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-11-07 20:24:10 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-07 20:24:10 +0000 |
commit | 4d48bbfd5378ffe70a17ad613b9c167ad3ef03b2 (patch) | |
tree | 6726e3a65a59e152d075746a1af6a49967949ac7 /xfa/fxfa/cxfa_textprovider.h | |
parent | d32fa8b75a3af1cddc4517a3085a43f7a3544c90 (diff) | |
download | pdfium-4d48bbfd5378ffe70a17ad613b9c167ad3ef03b2.tar.xz |
Rename CXFA_Font to CXFA_FontData
This CL renames CXFA_Font to CXFA_FontData to make it clear this is part
of the data hierarchy. The GetFontNode methods were renamed to
GetFontData to match the return type.
Change-Id: I5d5b9200eedc9c8c1bd8929a5a0df3d2663d7e3d
Reviewed-on: https://pdfium-review.googlesource.com/17983
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/cxfa_textprovider.h')
-rw-r--r-- | xfa/fxfa/cxfa_textprovider.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fxfa/cxfa_textprovider.h b/xfa/fxfa/cxfa_textprovider.h index d648b94495..e6549ef646 100644 --- a/xfa/fxfa/cxfa_textprovider.h +++ b/xfa/fxfa/cxfa_textprovider.h @@ -10,7 +10,7 @@ #include "core/fxcrt/fx_string.h" #include "xfa/fxfa/cxfa_textlayout.h" #include "xfa/fxfa/cxfa_widgetacc.h" -#include "xfa/fxfa/parser/cxfa_font.h" +#include "xfa/fxfa/parser/cxfa_fontdata.h" #include "xfa/fxfa/parser/cxfa_para.h" class CXFA_FFDoc; @@ -34,7 +34,7 @@ class CXFA_TextProvider { CXFA_Node* GetTextNode(bool& bRichText); CXFA_Para GetParaNode(); - CXFA_Font GetFontNode(); + CXFA_FontData GetFontData(); bool IsCheckButtonAndAutoWidth(); CXFA_FFDoc* GetDocNode() { return m_pWidgetAcc->GetDoc(); } bool GetEmbbedObj(bool bURI, |