summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_para.h
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-11-07 20:59:30 +0000
committerChromium commit bot <commit-bot@chromium.org>2017-11-07 20:59:30 +0000
commit5fe712cb6c605e597f65f6b4cd0afa3213234639 (patch)
tree666bf236e5a213f7baa23fbd1d407baef794942e /xfa/fxfa/parser/cxfa_para.h
parentc3ef52cf3c26d47877740dc46faa3088be44cfae (diff)
downloadpdfium-5fe712cb6c605e597f65f6b4cd0afa3213234639.tar.xz
Rename CXFA_Para to CXFA_ParaData
This CL renames CXFA_Para to CXFA_ParaData to show it is part of the data hierarchy. Change-Id: I71f58c87416b17d1e59252ca374aad13935fc430 Reviewed-on: https://pdfium-review.googlesource.com/17989 Commit-Queue: dsinclair <dsinclair@chromium.org> Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_para.h')
-rw-r--r--xfa/fxfa/parser/cxfa_para.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/xfa/fxfa/parser/cxfa_para.h b/xfa/fxfa/parser/cxfa_para.h
deleted file mode 100644
index c2d67b8a19..0000000000
--- a/xfa/fxfa/parser/cxfa_para.h
+++ /dev/null
@@ -1,29 +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
-
-#ifndef XFA_FXFA_PARSER_CXFA_PARA_H_
-#define XFA_FXFA_PARSER_CXFA_PARA_H_
-
-#include "core/fxcrt/fx_system.h"
-#include "xfa/fxfa/parser/cxfa_data.h"
-
-class CXFA_Node;
-
-class CXFA_Para : public CXFA_Data {
- public:
- explicit CXFA_Para(CXFA_Node* pNode);
-
- int32_t GetHorizontalAlign();
- int32_t GetVerticalAlign();
- float GetLineHeight();
- float GetMarginLeft();
- float GetMarginRight();
- float GetSpaceAbove();
- float GetSpaceBelow();
- float GetTextIndent();
-};
-
-#endif // XFA_FXFA_PARSER_CXFA_PARA_H_