| Index: sky/engine/platform/geometry/FloatPoint.h
|
| diff --git a/sky/engine/platform/geometry/FloatPoint.h b/sky/engine/platform/geometry/FloatPoint.h
|
| index 445f60262b9cc297b52d4c30461c0dd484991a4e..d91587297c44c6cce33ea93f990abb04d56e10b1 100644
|
| --- a/sky/engine/platform/geometry/FloatPoint.h
|
| +++ b/sky/engine/platform/geometry/FloatPoint.h
|
| @@ -32,14 +32,6 @@
|
| #include "wtf/MathExtras.h"
|
| #include <algorithm>
|
|
|
| -#if OS(MACOSX)
|
| -typedef struct CGPoint CGPoint;
|
| -
|
| -#ifdef __OBJC__
|
| -#import <Foundation/Foundation.h>
|
| -#endif
|
| -#endif
|
| -
|
| struct SkPoint;
|
|
|
| namespace blink {
|
| @@ -138,15 +130,6 @@ public:
|
| return FloatPoint(m_x * scale, m_y * scale);
|
| }
|
|
|
| -#if OS(MACOSX)
|
| - FloatPoint(const CGPoint&);
|
| - operator CGPoint() const;
|
| -#if defined(__OBJC__) && !defined(NSGEOMETRY_TYPES_SAME_AS_CGGEOMETRY_TYPES)
|
| - FloatPoint(const NSPoint&);
|
| - operator NSPoint() const;
|
| -#endif
|
| -#endif
|
| -
|
| SkPoint data() const;
|
|
|
| private:
|
|
|