| 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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 #endif | 221 #endif |
| 222 | 222 |
| 223 #if !defined(ENABLE_INPUT_TYPE_COLOR) | 223 #if !defined(ENABLE_INPUT_TYPE_COLOR) |
| 224 #define ENABLE_INPUT_TYPE_COLOR 0 | 224 #define ENABLE_INPUT_TYPE_COLOR 0 |
| 225 #endif | 225 #endif |
| 226 | 226 |
| 227 #if !defined(ENABLE_INPUT_TYPE_DATETIME_INCOMPLETE) | 227 #if !defined(ENABLE_INPUT_TYPE_DATETIME_INCOMPLETE) |
| 228 #define ENABLE_INPUT_TYPE_DATETIME_INCOMPLETE 0 | 228 #define ENABLE_INPUT_TYPE_DATETIME_INCOMPLETE 0 |
| 229 #endif | 229 #endif |
| 230 | 230 |
| 231 #if !defined(ENABLE_INPUT_TYPE_WEEK) | |
| 232 #define ENABLE_INPUT_TYPE_WEEK 0 | |
| 233 #endif | |
| 234 | |
| 235 #if !defined(ENABLE_JAVASCRIPT_I18N_API) | 231 #if !defined(ENABLE_JAVASCRIPT_I18N_API) |
| 236 #define ENABLE_JAVASCRIPT_I18N_API 0 | 232 #define ENABLE_JAVASCRIPT_I18N_API 0 |
| 237 #endif | 233 #endif |
| 238 | 234 |
| 239 #if !defined(ENABLE_LEGACY_NOTIFICATIONS) | 235 #if !defined(ENABLE_LEGACY_NOTIFICATIONS) |
| 240 #define ENABLE_LEGACY_NOTIFICATIONS 0 | 236 #define ENABLE_LEGACY_NOTIFICATIONS 0 |
| 241 #endif | 237 #endif |
| 242 | 238 |
| 243 #if !defined(ENABLE_LEGACY_VENDOR_PREFIXES) | 239 #if !defined(ENABLE_LEGACY_VENDOR_PREFIXES) |
| 244 #define ENABLE_LEGACY_VENDOR_PREFIXES 0 | 240 #define ENABLE_LEGACY_VENDOR_PREFIXES 0 |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 | 454 |
| 459 #if ENABLE(SVG_FONTS) && !ENABLE(SVG) | 455 #if ENABLE(SVG_FONTS) && !ENABLE(SVG) |
| 460 #error "ENABLE(SVG_FONTS) requires ENABLE(SVG)" | 456 #error "ENABLE(SVG_FONTS) requires ENABLE(SVG)" |
| 461 #endif | 457 #endif |
| 462 | 458 |
| 463 #if ENABLE(VIDEO_TRACK) && !ENABLE(VIDEO) | 459 #if ENABLE(VIDEO_TRACK) && !ENABLE(VIDEO) |
| 464 #error "ENABLE(VIDEO_TRACK) requires ENABLE(VIDEO)" | 460 #error "ENABLE(VIDEO_TRACK) requires ENABLE(VIDEO)" |
| 465 #endif | 461 #endif |
| 466 | 462 |
| 467 #endif /* WTF_FeatureDefines_h */ | 463 #endif /* WTF_FeatureDefines_h */ |
| OLD | NEW |