Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(561)

Unified Diff: xfa/fde/cfde_path.h

Issue 2467203003: Remove FX_BOOL from xfa. (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | xfa/fde/cfde_path.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fde/cfde_path.h
diff --git a/xfa/fde/cfde_path.h b/xfa/fde/cfde_path.h
index 34619d45ef55946f0d1c627373696f5345c91d3a..b0359cd1983308a20a456c3452fe80b9273c4b88 100644
--- a/xfa/fde/cfde_path.h
+++ b/xfa/fde/cfde_path.h
@@ -13,18 +13,18 @@
class CFDE_Path : public CFX_Target {
public:
- FX_BOOL StartFigure();
- FX_BOOL CloseFigure();
+ bool StartFigure();
+ bool CloseFigure();
void AddBezier(const CFX_PointsF& points);
void AddBeziers(const CFX_PointsF& points);
void AddCurve(const CFX_PointsF& points,
- FX_BOOL bClosed,
+ bool bClosed,
FX_FLOAT fTension = 0.5f);
void AddEllipse(const CFX_RectF& rect);
void AddLines(const CFX_PointsF& points);
void AddLine(const CFX_PointF& pt1, const CFX_PointF& pt2);
- void AddPath(const CFDE_Path* pSrc, FX_BOOL bConnect);
+ void AddPath(const CFDE_Path* pSrc, bool bConnect);
void AddPolygon(const CFX_PointsF& points);
void AddRectangle(const CFX_RectF& rect);
void GetBBox(CFX_RectF& bbox) const;
@@ -33,13 +33,13 @@ class CFDE_Path : public CFX_Target {
FX_FLOAT fMiterLimit) const;
FX_PATHPOINT* AddPoints(int32_t iCount);
FX_PATHPOINT* GetLastPoint(int32_t iCount = 1) const;
- FX_BOOL FigureClosed() const;
+ bool FigureClosed() const;
void MoveTo(FX_FLOAT fx, FX_FLOAT fy);
void LineTo(FX_FLOAT fx, FX_FLOAT fy);
void BezierTo(const CFX_PointF& p1,
const CFX_PointF& p2,
const CFX_PointF& p3);
- void ArcTo(FX_BOOL bStart,
+ void ArcTo(bool bStart,
const CFX_RectF& rect,
FX_FLOAT startAngle,
FX_FLOAT endAngle);
@@ -47,7 +47,7 @@ class CFDE_Path : public CFX_Target {
void LineTo(const CFX_PointF& p1) { LineTo(p1.x, p1.y); }
void GetCurveTangents(const CFX_PointsF& points,
CFX_PointsF& tangents,
- FX_BOOL bClosed,
+ bool bClosed,
FX_FLOAT fTension) const;
CFX_PathData m_Path;
};
« no previous file with comments | « no previous file | xfa/fde/cfde_path.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698