diff options
author | Nicolas Pena <npm@chromium.org> | 2017-11-09 22:04:17 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-09 22:04:17 +0000 |
commit | c7056ca0027eb34ed9abf31338c4cd2ffff40528 (patch) | |
tree | 64cefa863bfab09587fd8b1efe3dba2a3b44870e /xfa/fxfa/parser/cxfa_assistdata.cpp | |
parent | 309fa59a2992706924913a63e7c847bc431159bc (diff) | |
download | pdfium-c7056ca0027eb34ed9abf31338c4cd2ffff40528.tar.xz |
Remove a couple of unused methods in CXFA_FFWidget
This CL removes two unused methods in CXFA_FFWidget and also the code
that becomes unused after removing those.
Change-Id: Ifa58a7cabc1750bb13942f86385414e8f5e0cce3
Reviewed-on: https://pdfium-review.googlesource.com/18310
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Commit-Queue: Nicolás Peña Moreno <npm@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_assistdata.cpp')
-rw-r--r-- | xfa/fxfa/parser/cxfa_assistdata.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/xfa/fxfa/parser/cxfa_assistdata.cpp b/xfa/fxfa/parser/cxfa_assistdata.cpp deleted file mode 100644 index 051661f0c7..0000000000 --- a/xfa/fxfa/parser/cxfa_assistdata.cpp +++ /dev/null @@ -1,15 +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_assistdata.h" - -#include "xfa/fxfa/parser/cxfa_node.h" - -CXFA_AssistData::CXFA_AssistData(CXFA_Node* pNode) : CXFA_Data(pNode) {} - -CXFA_ToolTipData CXFA_AssistData::GetToolTipData() { - return CXFA_ToolTipData(m_pNode->GetChild(0, XFA_Element::ToolTip, false)); -} |