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

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

Issue 2159973003: Split xfa_object_imp into individual class files. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase to master Created 4 years, 5 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/parser/cxfa_object.cpp ('k') | xfa/fxfa/parser/xfa_object_imp.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
7 #include "xfa/fxfa/parser/xfa_object.h"
8
9 CXFA_ThisProxy::CXFA_ThisProxy(CXFA_Node* pThisNode, CXFA_Node* pScriptNode)
10 : CXFA_Object(pThisNode->GetDocument(),
11 XFA_ObjectType::VariablesThis,
12 XFA_Element::Unknown,
13 CFX_WideStringC()),
14 m_pThisNode(nullptr),
15 m_pScriptNode(nullptr) {
16 m_pThisNode = pThisNode;
17 m_pScriptNode = pScriptNode;
18 }
19
20 CXFA_ThisProxy::~CXFA_ThisProxy() {}
21
22 CXFA_Node* CXFA_ThisProxy::GetThisNode() const {
23 return m_pThisNode;
24 }
25
26 CXFA_Node* CXFA_ThisProxy::GetScriptNode() const {
27 return m_pScriptNode;
28 }
OLDNEW
« no previous file with comments | « xfa/fxfa/parser/cxfa_object.cpp ('k') | xfa/fxfa/parser/xfa_object_imp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698