Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Side by Side Diff: xfa/fxfa/include/xfa_ffpageview.h

Issue 2031873003: Get rid of NULLs in xfa/ (Closed) Base URL: https://pdfium.googlesource.com/pdfium@nullptr_fpdfsdk
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « xfa/fxfa/include/xfa_ffdoc.h ('k') | xfa/fxfa/include/xfa_ffwidget.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #ifndef XFA_FXFA_INCLUDE_XFA_FFPAGEVIEW_H_ 7 #ifndef XFA_FXFA_INCLUDE_XFA_FFPAGEVIEW_H_
8 #define XFA_FXFA_INCLUDE_XFA_FFPAGEVIEW_H_ 8 #define XFA_FXFA_INCLUDE_XFA_FFPAGEVIEW_H_
9 9
10 #include "xfa/fxfa/parser/xfa_doclayout.h" 10 #include "xfa/fxfa/parser/xfa_doclayout.h"
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 54
55 CXFA_FFPageView* m_pPageView; 55 CXFA_FFPageView* m_pPageView;
56 CXFA_FFWidget* m_hCurWidget; 56 CXFA_FFWidget* m_hCurWidget;
57 uint32_t m_dwFilter; 57 uint32_t m_dwFilter;
58 FX_BOOL m_bIgnorerelevant; 58 FX_BOOL m_bIgnorerelevant;
59 CXFA_LayoutItemIterator m_sIterator; 59 CXFA_LayoutItemIterator m_sIterator;
60 }; 60 };
61 typedef CFX_ArrayTemplate<CXFA_FFWidget*> CXFA_WidgetArray; 61 typedef CFX_ArrayTemplate<CXFA_FFWidget*> CXFA_WidgetArray;
62 class CXFA_TabParam { 62 class CXFA_TabParam {
63 public: 63 public:
64 CXFA_TabParam() : m_pWidget(NULL) {} 64 CXFA_TabParam() : m_pWidget(nullptr) {}
65 ~CXFA_TabParam() {} 65 ~CXFA_TabParam() {}
66 66
67 CXFA_FFWidget* m_pWidget; 67 CXFA_FFWidget* m_pWidget;
68 CXFA_WidgetArray m_Children; 68 CXFA_WidgetArray m_Children;
69 }; 69 };
70 class CXFA_FFTabOrderPageWidgetIterator : public IXFA_WidgetIterator { 70 class CXFA_FFTabOrderPageWidgetIterator : public IXFA_WidgetIterator {
71 public: 71 public:
72 CXFA_FFTabOrderPageWidgetIterator(CXFA_FFPageView* pPageView, 72 CXFA_FFTabOrderPageWidgetIterator(CXFA_FFPageView* pPageView,
73 uint32_t dwFilter); 73 uint32_t dwFilter);
74 ~CXFA_FFTabOrderPageWidgetIterator() override; 74 ~CXFA_FFTabOrderPageWidgetIterator() override;
(...skipping 21 matching lines...) Expand all
96 FX_BOOL bMarsterPage = FALSE); 96 FX_BOOL bMarsterPage = FALSE);
97 97
98 CXFA_WidgetArray m_TabOrderWidgetArray; 98 CXFA_WidgetArray m_TabOrderWidgetArray;
99 CXFA_FFPageView* m_pPageView; 99 CXFA_FFPageView* m_pPageView;
100 uint32_t m_dwFilter; 100 uint32_t m_dwFilter;
101 int32_t m_iCurWidget; 101 int32_t m_iCurWidget;
102 FX_BOOL m_bIgnorerelevant; 102 FX_BOOL m_bIgnorerelevant;
103 }; 103 };
104 104
105 #endif // XFA_FXFA_INCLUDE_XFA_FFPAGEVIEW_H_ 105 #endif // XFA_FXFA_INCLUDE_XFA_FFPAGEVIEW_H_
OLDNEW
« no previous file with comments | « xfa/fxfa/include/xfa_ffdoc.h ('k') | xfa/fxfa/include/xfa_ffwidget.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698