summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_linear.h
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2018-01-16 15:15:05 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-01-16 15:15:05 +0000
commitd3ae179dab3f63625e5dd3ddf0aa33176f8ee65c (patch)
tree151c01afa3404c846b1ab323607b244427b57ae9 /xfa/fxfa/parser/cxfa_linear.h
parentb36c7e1f84ea7402b7576d2a03a219d469735434 (diff)
downloadpdfium-d3ae179dab3f63625e5dd3ddf0aa33176f8ee65c.tar.xz
Cleanup CXFA_Fill
This CL cleans up the CXFA_Fill internal getters to handle nullptr returns correctly and moves some of the logic to the specific XFA classes. Change-Id: Icac487105a026a25cc9981d00fbc152e459ad0b8 Reviewed-on: https://pdfium-review.googlesource.com/22770 Reviewed-by: Ryan Harrison <rharrison@chromium.org> Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_linear.h')
-rw-r--r--xfa/fxfa/parser/cxfa_linear.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/xfa/fxfa/parser/cxfa_linear.h b/xfa/fxfa/parser/cxfa_linear.h
index af1b8e8a28..d17f7ffcb2 100644
--- a/xfa/fxfa/parser/cxfa_linear.h
+++ b/xfa/fxfa/parser/cxfa_linear.h
@@ -9,10 +9,17 @@
#include "xfa/fxfa/parser/cxfa_node.h"
+class CXFA_Color;
+
class CXFA_Linear : public CXFA_Node {
public:
+ static constexpr XFA_AttributeEnum kDefaultType = XFA_AttributeEnum::ToRight;
+
CXFA_Linear(CXFA_Document* doc, XFA_PacketType packet);
~CXFA_Linear() override;
+
+ XFA_AttributeEnum GetType();
+ CXFA_Color* GetColorIfExists();
};
#endif // XFA_FXFA_PARSER_CXFA_LINEAR_H_