summaryrefslogtreecommitdiff
path: root/core/fpdfapi/page/cpdf_pathobject.h
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2018-10-24 18:30:30 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-10-24 18:30:30 +0000
commitf4f2b6d45e00c67a3c508618a829330a67b827ba (patch)
tree559993f43ae437d8a1f07f7388fecd72bc119868 /core/fpdfapi/page/cpdf_pathobject.h
parent02d42b65b779e29737275a258cb9f30fa8449e5e (diff)
downloadpdfium-f4f2b6d45e00c67a3c508618a829330a67b827ba.tar.xz
Start making CPDF_PathObject members private.
Also move member initialization to the header. Change-Id: I557380ae774ddf887cefeb56df2a33e5b7cff8a4 Reviewed-on: https://pdfium-review.googlesource.com/c/44510 Commit-Queue: Lei Zhang <thestig@chromium.org> Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fpdfapi/page/cpdf_pathobject.h')
-rw-r--r--core/fpdfapi/page/cpdf_pathobject.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/core/fpdfapi/page/cpdf_pathobject.h b/core/fpdfapi/page/cpdf_pathobject.h
index 0a1e4d01f9..dd4cd55a79 100644
--- a/core/fpdfapi/page/cpdf_pathobject.h
+++ b/core/fpdfapi/page/cpdf_pathobject.h
@@ -27,9 +27,14 @@ class CPDF_PathObject final : public CPDF_PageObject {
void CalcBoundingBox();
+ const CFX_Matrix& matrix() const { return m_Matrix; }
+ void set_matrix(const CFX_Matrix& matrix) { m_Matrix = matrix; }
+
CPDF_Path m_Path;
- int m_FillType;
- bool m_bStroke;
+ int m_FillType = 0;
+ bool m_bStroke = false;
+
+ private:
CFX_Matrix m_Matrix;
};