| 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 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 440 #endif | 440 #endif |
| 441 | 441 |
| 442 #if !defined(ENABLE_SPEECH_SYNTHESIS) | 442 #if !defined(ENABLE_SPEECH_SYNTHESIS) |
| 443 #define ENABLE_SPEECH_SYNTHESIS 0 | 443 #define ENABLE_SPEECH_SYNTHESIS 0 |
| 444 #endif | 444 #endif |
| 445 | 445 |
| 446 #if !defined(ENABLE_SPELLCHECK) | 446 #if !defined(ENABLE_SPELLCHECK) |
| 447 #define ENABLE_SPELLCHECK 0 | 447 #define ENABLE_SPELLCHECK 0 |
| 448 #endif | 448 #endif |
| 449 | 449 |
| 450 #if !defined(ENABLE_SQL_DATABASE) | |
| 451 #define ENABLE_SQL_DATABASE 1 | |
| 452 #endif | |
| 453 | |
| 454 #if !defined(ENABLE_STYLE_SCOPED) | 450 #if !defined(ENABLE_STYLE_SCOPED) |
| 455 #define ENABLE_STYLE_SCOPED 0 | 451 #define ENABLE_STYLE_SCOPED 0 |
| 456 #endif | 452 #endif |
| 457 | 453 |
| 458 #if !defined(ENABLE_SVG) | 454 #if !defined(ENABLE_SVG) |
| 459 #define ENABLE_SVG 1 | 455 #define ENABLE_SVG 1 |
| 460 #endif | 456 #endif |
| 461 | 457 |
| 462 #if ENABLE(SVG) | 458 #if ENABLE(SVG) |
| 463 #if !defined(ENABLE_SVG_DOM_OBJC_BINDINGS) | 459 #if !defined(ENABLE_SVG_DOM_OBJC_BINDINGS) |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 559 | 555 |
| 560 #if ENABLE(SVG_FONTS) && !ENABLE(SVG) | 556 #if ENABLE(SVG_FONTS) && !ENABLE(SVG) |
| 561 #error "ENABLE(SVG_FONTS) requires ENABLE(SVG)" | 557 #error "ENABLE(SVG_FONTS) requires ENABLE(SVG)" |
| 562 #endif | 558 #endif |
| 563 | 559 |
| 564 #if ENABLE(VIDEO_TRACK) && !ENABLE(VIDEO) | 560 #if ENABLE(VIDEO_TRACK) && !ENABLE(VIDEO) |
| 565 #error "ENABLE(VIDEO_TRACK) requires ENABLE(VIDEO)" | 561 #error "ENABLE(VIDEO_TRACK) requires ENABLE(VIDEO)" |
| 566 #endif | 562 #endif |
| 567 | 563 |
| 568 #endif /* WTF_FeatureDefines_h */ | 564 #endif /* WTF_FeatureDefines_h */ |
| OLD | NEW |