| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2013 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2013 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2007-2009 Torch Mobile, Inc. | 3 * Copyright (C) 2007-2009 Torch Mobile, Inc. |
| 4 * Copyright (C) 2010, 2011 Research In Motion Limited. All rights reserved. | 4 * Copyright (C) 2010, 2011 Research In Motion Limited. All rights reserved. |
| 5 * Copyright (C) 2013 Samsung Electronics. All rights reserved. | 5 * Copyright (C) 2013 Samsung Electronics. All rights reserved. |
| 6 * | 6 * |
| 7 * Redistribution and use in source and binary forms, with or without | 7 * Redistribution and use in source and binary forms, with or without |
| 8 * modification, are permitted provided that the following conditions | 8 * modification, are permitted provided that the following conditions |
| 9 * are met: | 9 * are met: |
| 10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 #if PLATFORM(QT) | 222 #if PLATFORM(QT) |
| 223 | 223 |
| 224 #if OS(UNIX) | 224 #if OS(UNIX) |
| 225 #if !defined(ENABLE_PLUGIN_PACKAGE_SIMPLE_HASH) | 225 #if !defined(ENABLE_PLUGIN_PACKAGE_SIMPLE_HASH) |
| 226 #define ENABLE_PLUGIN_PACKAGE_SIMPLE_HASH 1 | 226 #define ENABLE_PLUGIN_PACKAGE_SIMPLE_HASH 1 |
| 227 #endif | 227 #endif |
| 228 #endif | 228 #endif |
| 229 | 229 |
| 230 #endif /* PLATFORM(QT) */ | 230 #endif /* PLATFORM(QT) */ |
| 231 | 231 |
| 232 /* --------- Blackberry port (QNX) --------- */ | |
| 233 #if PLATFORM(BLACKBERRY) | |
| 234 | |
| 235 #if !defined(ENABLE_BLACKBERRY_CREDENTIAL_PERSIST) | |
| 236 #define ENABLE_BLACKBERRY_CREDENTIAL_PERSIST 1 | |
| 237 #endif | |
| 238 | |
| 239 #endif /* PLATFORM(BLACKBERRY) */ | |
| 240 | |
| 241 /* ENABLE macro defaults for WebCore */ | 232 /* ENABLE macro defaults for WebCore */ |
| 242 /* Do not use PLATFORM() tests in this section ! */ | 233 /* Do not use PLATFORM() tests in this section ! */ |
| 243 | 234 |
| 244 #if !defined(ENABLE_3D_PLUGIN) | 235 #if !defined(ENABLE_3D_PLUGIN) |
| 245 #define ENABLE_3D_PLUGIN 0 | 236 #define ENABLE_3D_PLUGIN 0 |
| 246 #endif | 237 #endif |
| 247 | 238 |
| 248 #if !defined(ENABLE_3D_RENDERING) | 239 #if !defined(ENABLE_3D_RENDERING) |
| 249 #define ENABLE_3D_RENDERING 0 | 240 #define ENABLE_3D_RENDERING 0 |
| 250 #endif | 241 #endif |
| (...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 772 | 763 |
| 773 #if ENABLE(SVG_FONTS) && !ENABLE(SVG) | 764 #if ENABLE(SVG_FONTS) && !ENABLE(SVG) |
| 774 #error "ENABLE(SVG_FONTS) requires ENABLE(SVG)" | 765 #error "ENABLE(SVG_FONTS) requires ENABLE(SVG)" |
| 775 #endif | 766 #endif |
| 776 | 767 |
| 777 #if ENABLE(VIDEO_TRACK) && !ENABLE(VIDEO) | 768 #if ENABLE(VIDEO_TRACK) && !ENABLE(VIDEO) |
| 778 #error "ENABLE(VIDEO_TRACK) requires ENABLE(VIDEO)" | 769 #error "ENABLE(VIDEO_TRACK) requires ENABLE(VIDEO)" |
| 779 #endif | 770 #endif |
| 780 | 771 |
| 781 #endif /* WTF_FeatureDefines_h */ | 772 #endif /* WTF_FeatureDefines_h */ |
| OLD | NEW |