OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 17 matching lines...) Expand all Loading... |
28 | 28 |
29 #ifndef ColorMac_h | 29 #ifndef ColorMac_h |
30 #define ColorMac_h | 30 #define ColorMac_h |
31 | 31 |
32 #include "platform/graphics/Color.h" | 32 #include "platform/graphics/Color.h" |
33 | 33 |
34 OBJC_CLASS NSColor; | 34 OBJC_CLASS NSColor; |
35 | 35 |
36 namespace WebCore { | 36 namespace WebCore { |
37 | 37 |
38 // These functions assume NSColors are in DeviceRGB colorspace | 38 // This function assumes NSColors are in DeviceRGB colorspace |
39 Color PLATFORM_EXPORT colorFromNSColor(NSColor *); | 39 PLATFORM_EXPORT NSColor* nsColor(const Color&); |
40 NSColor* PLATFORM_EXPORT nsColor(const Color&); | |
41 | |
42 bool PLATFORM_EXPORT usesTestModeFocusRingColor(); | |
43 void PLATFORM_EXPORT setUsesTestModeFocusRingColor(bool); | |
44 | |
45 // Focus ring color used for testing purposes. | |
46 RGBA32 PLATFORM_EXPORT oldAquaFocusRingColor(); | |
47 | 40 |
48 } | 41 } |
49 | 42 |
50 #endif | 43 #endif |
OLD | NEW |