Chromium Code Reviews| Index: ui/gfx/point.h |
| diff --git a/ui/gfx/point.h b/ui/gfx/point.h |
| index 403610a1636716a9572e1713fe32257dc2c04c5a..93753a5ae9a23950ee2c402b3a1da81cbe4c8287 100644 |
| --- a/ui/gfx/point.h |
| +++ b/ui/gfx/point.h |
| @@ -11,7 +11,9 @@ |
| #if defined(OS_WIN) |
| typedef unsigned long DWORD; |
| typedef struct tagPOINT POINT; |
| -#elif defined(OS_MACOSX) |
| +#elif defined(OS_IOS) // iOS but not Mac |
| +#include <CoreGraphics/CoreGraphics.h> |
| +#elif defined(OS_MACOSX) // iOS special-cased above |
|
stuartmorgan
2012/08/01 13:26:18
Let's remove these comments; I'm not sure they add
noyau (Ping after 24h)
2012/08/01 13:53:45
Done.
|
| #include <ApplicationServices/ApplicationServices.h> |
| #endif |