[2] | 1 | /*
|
---|
| 2 | * This file is part of the precompiled header for all of WebKit.
|
---|
| 3 | *
|
---|
| 4 | * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
---|
| 5 | *
|
---|
| 6 | * This library is free software; you can redistribute it and/or
|
---|
| 7 | * modify it under the terms of the GNU Library General Public
|
---|
| 8 | * License as published by the Free Software Foundation; either
|
---|
| 9 | * version 2 of the License, or (at your option) any later version.
|
---|
| 10 | *
|
---|
| 11 | * This library is distributed in the hope that it will be useful,
|
---|
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
| 14 | * Library General Public License for more details.
|
---|
| 15 | *
|
---|
| 16 | * You should have received a copy of the GNU Library General Public License
|
---|
| 17 | * along with this library; see the file COPYING.LIB. If not, write to
|
---|
| 18 | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
---|
| 19 | * Boston, MA 02110-1301, USA.
|
---|
| 20 | *
|
---|
| 21 | */
|
---|
| 22 |
|
---|
| 23 | /*
|
---|
| 24 | * This is a precompiled header file for use in Xcode / Mac GCC /
|
---|
| 25 | * GCC >= 3.4 / VC to greatly speed the building of QtWebKit.
|
---|
| 26 | *
|
---|
| 27 | * The order of the includes appears random and arbitrary. But unfortunately
|
---|
| 28 | * MSVC is very sensitive and behaves fairly strange when compiling with
|
---|
| 29 | * precompiled headers. Please be very careful when adding, removing or
|
---|
| 30 | * changing the order of included header files.
|
---|
| 31 | */
|
---|
| 32 |
|
---|
| 33 |
|
---|
| 34 | #if defined __cplusplus
|
---|
| 35 |
|
---|
| 36 | #if defined(_WIN32) && !defined(_WIN32_WCE)
|
---|
| 37 | #define _CRT_RAND_S
|
---|
| 38 | #define _WIN32_WINNT 0x0500
|
---|
| 39 | #include <windows.h>
|
---|
| 40 | #endif
|
---|
| 41 |
|
---|
| 42 | #include "../../JavaScriptCore/config.h"
|
---|
| 43 |
|
---|
| 44 | #include <math.h>
|
---|
| 45 | #include <stdio.h>
|
---|
| 46 | #include <stdlib.h>
|
---|
| 47 | #include <string.h>
|
---|
| 48 | #include <algorithm>
|
---|
| 49 | #include <assert.h>
|
---|
| 50 | #include <ctype.h>
|
---|
| 51 | #include <limits.h>
|
---|
| 52 |
|
---|
| 53 | #include <wtf/HashTable.h>
|
---|
| 54 | #include <wtf/Vector.h>
|
---|
| 55 | #include <wtf/ListHashSet.h>
|
---|
| 56 | #include <wtf/HashMap.h>
|
---|
| 57 | #include <wtf/HashSet.h>
|
---|
| 58 | #include <wtf/HashTraits.h>
|
---|
| 59 | #include <wtf/HashIterators.h>
|
---|
| 60 | #include <wtf/TCPageMap.h>
|
---|
| 61 | #include <wtf/Assertions.h>
|
---|
| 62 | #include <wtf/HashCountedSet.h>
|
---|
| 63 | #include <wtf/PassRefPtr.h>
|
---|
| 64 | #include <wtf/Platform.h>
|
---|
| 65 | #include <wtf/RefPtr.h>
|
---|
| 66 | #include <wtf/VectorTraits.h>
|
---|
| 67 | #include <wtf/MathExtras.h>
|
---|
| 68 | #include <wtf/HashFunctions.h>
|
---|
| 69 | #include <wtf/OwnPtr.h>
|
---|
| 70 | #include <wtf/OwnArrayPtr.h>
|
---|
| 71 | #include <wtf/ListRefPtr.h>
|
---|
| 72 | #include <wtf/FastMalloc.h>
|
---|
| 73 | #include <wtf/TCSystemAlloc.h>
|
---|
| 74 | #include <wtf/StringExtras.h>
|
---|
| 75 | #include <wtf/Noncopyable.h>
|
---|
| 76 | #include <wtf/Forward.h>
|
---|
| 77 | #include <wtf/UnusedParam.h>
|
---|
| 78 | #include <wtf/AlwaysInline.h>
|
---|
| 79 | #include <wtf/GetPtr.h>
|
---|
| 80 | #endif
|
---|