| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2007-2009 Torch Mobile, Inc. | 3 * Copyright (C) 2007-2009 Torch Mobile, Inc. |
| 4 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 4 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 1022 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1033 #define ENABLE_EXECUTABLE_ALLOCATOR_FIXED 1 | 1033 #define ENABLE_EXECUTABLE_ALLOCATOR_FIXED 1 |
| 1034 #else | 1034 #else |
| 1035 #define ENABLE_EXECUTABLE_ALLOCATOR_DEMAND 1 | 1035 #define ENABLE_EXECUTABLE_ALLOCATOR_DEMAND 1 |
| 1036 #endif | 1036 #endif |
| 1037 #endif | 1037 #endif |
| 1038 | 1038 |
| 1039 #if !defined(ENABLE_PAN_SCROLLING) && OS(WINDOWS) | 1039 #if !defined(ENABLE_PAN_SCROLLING) && OS(WINDOWS) |
| 1040 #define ENABLE_PAN_SCROLLING 1 | 1040 #define ENABLE_PAN_SCROLLING 1 |
| 1041 #endif | 1041 #endif |
| 1042 | 1042 |
| 1043 #if !defined(ENABLE_SMOOTH_SCROLLING) |
| 1044 #define ENABLE_SMOOTH_SCROLLING 0 |
| 1045 #endif |
| 1046 |
| 1043 /* Use the QXmlStreamReader implementation for XMLDocumentParser */ | 1047 /* Use the QXmlStreamReader implementation for XMLDocumentParser */ |
| 1044 /* Use the QXmlQuery implementation for XSLTProcessor */ | 1048 /* Use the QXmlQuery implementation for XSLTProcessor */ |
| 1045 #if PLATFORM(QT) | 1049 #if PLATFORM(QT) |
| 1046 #define WTF_USE_QXMLSTREAM 1 | 1050 #define WTF_USE_QXMLSTREAM 1 |
| 1047 #define WTF_USE_QXMLQUERY 1 | 1051 #define WTF_USE_QXMLQUERY 1 |
| 1048 #endif | 1052 #endif |
| 1049 | 1053 |
| 1050 #if PLATFORM(MAC) | 1054 #if PLATFORM(MAC) |
| 1051 /* Complex text framework */ | 1055 /* Complex text framework */ |
| 1052 #if !defined(BUILDING_ON_TIGER) && !defined(BUILDING_ON_LEOPARD) | 1056 #if !defined(BUILDING_ON_TIGER) && !defined(BUILDING_ON_LEOPARD) |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1115 | 1119 |
| 1116 #if CPU(ARM_THUMB2) | 1120 #if CPU(ARM_THUMB2) |
| 1117 #define ENABLE_BRANCH_COMPACTION 1 | 1121 #define ENABLE_BRANCH_COMPACTION 1 |
| 1118 #endif | 1122 #endif |
| 1119 | 1123 |
| 1120 #if PLATFORM(GTK) || (PLATFORM(EFL) && ENABLE(GLIB_SUPPORT)) | 1124 #if PLATFORM(GTK) || (PLATFORM(EFL) && ENABLE(GLIB_SUPPORT)) |
| 1121 #include "GTypedefs.h" | 1125 #include "GTypedefs.h" |
| 1122 #endif | 1126 #endif |
| 1123 | 1127 |
| 1124 #endif /* WTF_Platform_h */ | 1128 #endif /* WTF_Platform_h */ |
| OLD | NEW |