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

Side by Side Diff: xfa/fxfa/parser/cxfa_value.cpp

Issue 2082573007: Update GetClassID to GetElementType (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@remove_script_obj_hash
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
OLDNEW
1 // Copyright 2016 PDFium Authors. All rights reserved. 1 // Copyright 2016 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 #include "xfa/fxfa/parser/cxfa_value.h" 7 #include "xfa/fxfa/parser/cxfa_value.h"
8 8
9 #include "xfa/fxfa/parser/xfa_object.h" 9 #include "xfa/fxfa/parser/xfa_object.h"
10 10
11 XFA_Element CXFA_Value::GetChildValueClassID() { 11 XFA_Element CXFA_Value::GetChildValueClassID() {
12 if (!m_pNode) 12 if (!m_pNode)
13 return XFA_Element::Unknown; 13 return XFA_Element::Unknown;
14 if (CXFA_Node* pNode = m_pNode->GetNodeItem(XFA_NODEITEM_FirstChild)) 14 if (CXFA_Node* pNode = m_pNode->GetNodeItem(XFA_NODEITEM_FirstChild))
15 return pNode->GetClassID(); 15 return pNode->GetElementType();
16 return XFA_Element::Unknown; 16 return XFA_Element::Unknown;
17 } 17 }
18 18
19 FX_BOOL CXFA_Value::GetChildValueContent(CFX_WideString& wsContent) { 19 FX_BOOL CXFA_Value::GetChildValueContent(CFX_WideString& wsContent) {
20 if (!m_pNode) 20 if (!m_pNode)
21 return FALSE; 21 return FALSE;
22 if (CXFA_Node* pNode = m_pNode->GetNodeItem(XFA_NODEITEM_FirstChild)) 22 if (CXFA_Node* pNode = m_pNode->GetNodeItem(XFA_NODEITEM_FirstChild))
23 return pNode->TryContent(wsContent); 23 return pNode->TryContent(wsContent);
24 return FALSE; 24 return FALSE;
25 } 25 }
(...skipping 21 matching lines...) Expand all
47 CXFA_ExData CXFA_Value::GetExData() { 47 CXFA_ExData CXFA_Value::GetExData() {
48 return CXFA_ExData(m_pNode ? m_pNode->GetNodeItem(XFA_NODEITEM_FirstChild) 48 return CXFA_ExData(m_pNode ? m_pNode->GetNodeItem(XFA_NODEITEM_FirstChild)
49 : nullptr); 49 : nullptr);
50 } 50 }
51 51
52 CXFA_Image CXFA_Value::GetImage() { 52 CXFA_Image CXFA_Value::GetImage() {
53 return CXFA_Image( 53 return CXFA_Image(
54 m_pNode ? (m_pNode->GetNodeItem(XFA_NODEITEM_FirstChild)) : nullptr, 54 m_pNode ? (m_pNode->GetNodeItem(XFA_NODEITEM_FirstChild)) : nullptr,
55 TRUE); 55 TRUE);
56 } 56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698