diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-11-07 21:14:50 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-07 21:14:50 +0000 |
commit | 2166e986c2aa0e73ae4f2f5af149fa234574094f (patch) | |
tree | 9778cd19d0a88f08874f1553c238aa7de9ce30d9 /xfa/fxfa/parser/cxfa_rectangledata.h | |
parent | 5fe712cb6c605e597f65f6b4cd0afa3213234639 (diff) | |
download | pdfium-2166e986c2aa0e73ae4f2f5af149fa234574094f.tar.xz |
Rename CXFA_Rectangle to CXFA_RectangleData
This CL renames CXFA_Rectangle to CXFA_RectangleData to signify it is
part of the data hierarchy.
Change-Id: Ie563b4304cb595d4b3bb0ffc5303549f1fb37b18
Reviewed-on: https://pdfium-review.googlesource.com/18011
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_rectangledata.h')
-rw-r--r-- | xfa/fxfa/parser/cxfa_rectangledata.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/xfa/fxfa/parser/cxfa_rectangledata.h b/xfa/fxfa/parser/cxfa_rectangledata.h new file mode 100644 index 0000000000..f0abadc3b6 --- /dev/null +++ b/xfa/fxfa/parser/cxfa_rectangledata.h @@ -0,0 +1,19 @@ +// 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_RECTANGLEDATA_H_ +#define XFA_FXFA_PARSER_CXFA_RECTANGLEDATA_H_ + +#include "xfa/fxfa/parser/cxfa_boxdata.h" + +class CXFA_Node; + +class CXFA_RectangleData : public CXFA_BoxData { + public: + explicit CXFA_RectangleData(CXFA_Node* pNode) : CXFA_BoxData(pNode) {} +}; + +#endif // XFA_FXFA_PARSER_CXFA_RECTANGLEDATA_H_ |