diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-01-03 15:11:52 -0500 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-03 21:13:01 +0000 |
commit | 44820980f762797f1ffba61b9f5b8cf0922489a3 (patch) | |
tree | b2531d761af57526945881c395c790a00685584c /xfa/fxfa/parser/cxfa_binddata.cpp | |
parent | bf1cf346ba28a9eab0d2ea490868c51040ee2bc4 (diff) | |
download | pdfium-44820980f762797f1ffba61b9f5b8cf0922489a3.tar.xz |
Fold CXFA_BindData into CXFA_Bind
This CL merges the CXFA_BindData wrapper into CXFA_Bind.
Change-Id: I621955be2673938bf08c7897779311b776d0bf8b
Reviewed-on: https://pdfium-review.googlesource.com/22131
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_binddata.cpp')
-rw-r--r-- | xfa/fxfa/parser/cxfa_binddata.cpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/xfa/fxfa/parser/cxfa_binddata.cpp b/xfa/fxfa/parser/cxfa_binddata.cpp deleted file mode 100644 index 7a7e2eef86..0000000000 --- a/xfa/fxfa/parser/cxfa_binddata.cpp +++ /dev/null @@ -1,18 +0,0 @@ -// Copyright 2016 PDFium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com - -#include "xfa/fxfa/parser/cxfa_binddata.h" - -#include "xfa/fxfa/parser/cxfa_node.h" -#include "xfa/fxfa/parser/cxfa_picture.h" - -CXFA_BindData::CXFA_BindData(CXFA_Node* pNode) : CXFA_DataData(pNode) {} - -WideString CXFA_BindData::GetPicture() { - CXFA_Picture* pPicture = - m_pNode->GetChild<CXFA_Picture>(0, XFA_Element::Picture, false); - return pPicture ? pPicture->JSObject()->GetContent(false) : L""; -} |