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

Unified Diff: xfa/fde/xml/cfx_saxreader.h

Issue 2051233002: Remove more casts, part 7. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
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 side-by-side diff with in-line comments
Download patch
Index: xfa/fde/xml/cfx_saxreader.h
diff --git a/xfa/fde/xml/cfx_saxreader.h b/xfa/fde/xml/cfx_saxreader.h
index 18aa039ccc4be3445763d0d7c5090ec0e835f3d8..e602c3d9e2230afb6a3b819e27ca373e70620f04 100644
--- a/xfa/fde/xml/cfx_saxreader.h
+++ b/xfa/fde/xml/cfx_saxreader.h
@@ -9,6 +9,8 @@
#include "core/fxcrt/include/fx_basic.h"
+class CXFA_SAXContext;
+
class CFX_SAXItem {
public:
enum class Type {
@@ -29,7 +31,7 @@ class CFX_SAXItem {
m_pPrev(nullptr),
m_pNext(nullptr) {}
- void* m_pNode;
+ CXFA_SAXContext* m_pNode;
Type m_eNode;
uint32_t m_dwID;
FX_BOOL m_bSkip;

Powered by Google App Engine
This is Rietveld 408576698