diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-01-16 15:49:16 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-16 15:49:16 +0000 |
commit | 316dd2fcd64d0cda1e1b2cdc39ca541a57766b35 (patch) | |
tree | af3745a818839a7cebc92927f9e115c429bbbe0b /xfa/fxfa/parser/cxfa_value.h | |
parent | d021ad2f6306ae9d7b2ab5acf225c3bd8e957f8f (diff) | |
download | pdfium-316dd2fcd64d0cda1e1b2cdc39ca541a57766b35.tar.xz |
Rename CXFA_Value methods for clarity
This CL marks the methods in CXFA_Value to make it clear which can
return nullptr and updates callsites as needed.
Change-Id: If1f794bcbbddaa57a1efdd67195df58a77b4373a
Reviewed-on: https://pdfium-review.googlesource.com/22773
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_value.h')
-rw-r--r-- | xfa/fxfa/parser/cxfa_value.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/xfa/fxfa/parser/cxfa_value.h b/xfa/fxfa/parser/cxfa_value.h index 5067b715db..47aeefede2 100644 --- a/xfa/fxfa/parser/cxfa_value.h +++ b/xfa/fxfa/parser/cxfa_value.h @@ -24,12 +24,12 @@ class CXFA_Value : public CXFA_Node { XFA_Element GetChildValueClassID() const; WideString GetChildValueContent() const; - CXFA_Arc* GetArc() const; - CXFA_Line* GetLine() const; - CXFA_Rectangle* GetRectangle() const; - CXFA_Text* GetText() const; - CXFA_ExData* GetExData() const; - CXFA_Image* GetImage() const; + CXFA_Arc* GetArcIfExists() const; + CXFA_Line* GetLineIfExists() const; + CXFA_Rectangle* GetRectangleIfExists() const; + CXFA_Text* GetTextIfExists() const; + CXFA_ExData* GetExDataIfExists() const; + CXFA_Image* GetImageIfExists() const; }; #endif // XFA_FXFA_PARSER_CXFA_VALUE_H_ |