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

Unified Diff: xfa/fxfa/parser/xfa_object.h

Issue 2079393006: Remove IsOrdinaryList; rename to OrdinaryList to List (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa_part_III
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
« no previous file with comments | « xfa/fxfa/parser/xfa_basic_data.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fxfa/parser/xfa_object.h
diff --git a/xfa/fxfa/parser/xfa_object.h b/xfa/fxfa/parser/xfa_object.h
index 8b1f2303f662ee8e4838d53b954c553bc7d9ca26..09d8183ce364f411c4577a0118f3185f93a3bb82 100644
--- a/xfa/fxfa/parser/xfa_object.h
+++ b/xfa/fxfa/parser/xfa_object.h
@@ -19,7 +19,7 @@ class CXFA_NodeList;
enum class XFA_ObjectType {
Object,
- OrdinaryList,
+ List,
NodeList,
Node,
NodeC,
@@ -65,9 +65,6 @@ class CXFA_Object : public CFXJSE_HostObject {
m_objectType == XFA_ObjectType::VariablesThis;
}
bool IsNodeList() const { return m_objectType == XFA_ObjectType::NodeList; }
- bool IsOrdinaryList() const {
- return m_objectType == XFA_ObjectType::OrdinaryList;
- }
bool IsContentNode() const {
return m_objectType == XFA_ObjectType::ContentNode;
}
« no previous file with comments | « xfa/fxfa/parser/xfa_basic_data.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698