diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-11-07 20:06:01 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-07 20:06:01 +0000 |
commit | b415ffb47de6e58603db2a01027aa879c0126b24 (patch) | |
tree | 48117c166ada6f156d501de7da71d191fdce271a /xfa/fxfa/parser/cxfa_edge.h | |
parent | c0c3b8cb21296f182da3be97acf175346bc06004 (diff) | |
download | pdfium-b415ffb47de6e58603db2a01027aa879c0126b24.tar.xz |
Rename CXFA_Edge to CXFA_EdgeData
This CL renames CXFA_Edge to CXFA_EdgeData to make it clear it's part of
the data hierarchy.
Change-Id: Id67526cafe1927803c36159b106656c32e770d6b
Reviewed-on: https://pdfium-review.googlesource.com/17979
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_edge.h')
-rw-r--r-- | xfa/fxfa/parser/cxfa_edge.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/xfa/fxfa/parser/cxfa_edge.h b/xfa/fxfa/parser/cxfa_edge.h deleted file mode 100644 index 96e725f4c6..0000000000 --- a/xfa/fxfa/parser/cxfa_edge.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_EDGE_H_ -#define XFA_FXFA_PARSER_CXFA_EDGE_H_ - -#include "xfa/fxfa/parser/cxfa_stroke.h" - -class CXFA_Node; - -class CXFA_Edge : public CXFA_Stroke { - public: - explicit CXFA_Edge(CXFA_Node* pNode) : CXFA_Stroke(pNode) {} -}; - -#endif // XFA_FXFA_PARSER_CXFA_EDGE_H_ |