diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-01-03 16:58:06 -0500 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-04 14:48:52 +0000 |
commit | 4cf0589c4bc388781cbfc8459c4904bb2bd947bf (patch) | |
tree | 5bc9da1f2abffbbf9ec91271f7765983e65d1c0d /xfa/fxfa/parser/cxfa_exdatadata.cpp | |
parent | e83a915ebd3afaa897dbbf3e6cb3d2a2cb198595 (diff) | |
download | pdfium-4cf0589c4bc388781cbfc8459c4904bb2bd947bf.tar.xz |
Fold CXFA_ExDataData into CXFA_ExData
This CL removes the CXFA_ExDataData wrapper and puts the code in
CXFA_ExData directly.
Change-Id: I9406d615a09fb431b5c620ed348f9976cf8dc72a
Reviewed-on: https://pdfium-review.googlesource.com/22230
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_exdatadata.cpp')
-rw-r--r-- | xfa/fxfa/parser/cxfa_exdatadata.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/xfa/fxfa/parser/cxfa_exdatadata.cpp b/xfa/fxfa/parser/cxfa_exdatadata.cpp deleted file mode 100644 index 41a1b03ec0..0000000000 --- a/xfa/fxfa/parser/cxfa_exdatadata.cpp +++ /dev/null @@ -1,16 +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_exdatadata.h" - -#include "xfa/fxfa/parser/cxfa_node.h" - -CXFA_ExDataData::CXFA_ExDataData(CXFA_Node* pNode) : CXFA_DataData(pNode) {} - -void CXFA_ExDataData::SetContentType(const WideString& wsContentType) { - m_pNode->JSObject()->SetCData(XFA_Attribute::ContentType, wsContentType, - false, false); -} |