diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-11-07 18:32:30 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-07 18:32:30 +0000 |
commit | 0dbaa90e9f6777c5d2203cd18dc565670d6271c0 (patch) | |
tree | ab0b61557afc5930a9313defdebdb1ff717fa532 /xfa/fxfa/parser/cxfa_arc.h | |
parent | 1b5eab3025b2b93a89261193167f613c0c924b32 (diff) | |
download | pdfium-0dbaa90e9f6777c5d2203cd18dc565670d6271c0.tar.xz |
Rename CXFA_Arc to CXFA_ArcData
This CL renames the CXFA_Arc class to make it clear it's part of the
data hierarchy.
Change-Id: Ia4cc276a2829db7ff11e778fe639b5c5656bf23e
Reviewed-on: https://pdfium-review.googlesource.com/17970
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_arc.h')
-rw-r--r-- | xfa/fxfa/parser/cxfa_arc.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/xfa/fxfa/parser/cxfa_arc.h b/xfa/fxfa/parser/cxfa_arc.h deleted file mode 100644 index e712d806a7..0000000000 --- a/xfa/fxfa/parser/cxfa_arc.h +++ /dev/null @@ -1,19 +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_ARC_H_ -#define XFA_FXFA_PARSER_CXFA_ARC_H_ - -#include "xfa/fxfa/parser/cxfa_box.h" - -class CXFA_Node; - -class CXFA_Arc : public CXFA_Box { - public: - explicit CXFA_Arc(CXFA_Node* pNode) : CXFA_Box(pNode) {} -}; - -#endif // XFA_FXFA_PARSER_CXFA_ARC_H_ |