| Index: sky/engine/platform/geometry/IntSize.h
|
| diff --git a/sky/engine/platform/geometry/IntSize.h b/sky/engine/platform/geometry/IntSize.h
|
| index 6e56e4b55d5e357b66da248b78cb91fb5cf09441..cbd4b8ee3d614107016adb7214dc7d3396e3985c 100644
|
| --- a/sky/engine/platform/geometry/IntSize.h
|
| +++ b/sky/engine/platform/geometry/IntSize.h
|
| @@ -30,14 +30,6 @@
|
| #include "platform/PlatformExport.h"
|
| #include "public/platform/WebCommon.h"
|
|
|
| -#if OS(MACOSX)
|
| -typedef struct CGSize CGSize;
|
| -
|
| -#ifdef __OBJC__
|
| -#import <Foundation/Foundation.h>
|
| -#endif
|
| -#endif
|
| -
|
| namespace blink {
|
|
|
| class PLATFORM_EXPORT IntSize {
|
| @@ -114,16 +106,6 @@ public:
|
| return IntSize(m_height, m_width);
|
| }
|
|
|
| -#if OS(MACOSX)
|
| - explicit IntSize(const CGSize&); // don't do this implicitly since it's lossy
|
| - operator CGSize() const;
|
| -
|
| -#if defined(__OBJC__) && !defined(NSGEOMETRY_TYPES_SAME_AS_CGGEOMETRY_TYPES)
|
| - explicit IntSize(const NSSize &); // don't do this implicitly since it's lossy
|
| - operator NSSize() const;
|
| -#endif
|
| -#endif
|
| -
|
| private:
|
| int m_width, m_height;
|
| };
|
|
|