12010-04-18 Ruben Van Boxem <vanboxem.ruben@gmail.com>
2
3 Reviewed by NOBODY (OOPS!).
4
5 Fixes for Win64 compilation under gcc (mingw-w64)
6
7 * WebCore/bridge/npapi.h: for win64 compatibility, mirroring mozilla-central, see Mozilla bug 560298
8 * WebCore/platform/Arena.h: uword is used to cast from pointers here. unsigned long is 32-bit on Windows (but 64-bit on mac), and too small to hold a pointer. uintptr_t is 32-bit on 32-bit systems (mac, linux and windows) and 64-bit on all 64-bit systems
9 * WebCore/platform/graphics/transforms/TransformationMatrix.h: let mingw-w64/w32 use MSVC codepath
10 * WebCore/platform/text/TextStream.cpp: let mingw-w64 use MSVC codepath
11 * WebCore/platform/text/TextStream.h: let mingw-w64 use MSVC codepath
12 * WebCore/plugins/PluginView.cpp: fix pointer casts on WIN64 and let mingw-w64 use MSVC codepath
13 * WebCore/plugins/win/PluginViewWin.cpp: fix pointer casts on WIN64
14