Benoit Jacob
|
aebf0bb92a
|
Bug 959380 - 4/5 - Make gfxContentType a typed enum - r=jrmuizel
find . -type f | grep -v '\./obj' | grep -v '\.hg' | xargs sed -i 's/\(^\|[^A-Za-z0-9_]\)GFX_CONTENT_\(COLOR\|ALPHA\|COLOR_ALPHA\|SENTINEL\)\($\|[^A-Za-z0-9_]\)/\1gfxContentType::\2\3/g'
|
2014-01-23 13:26:40 -05:00 |
Benoit Jacob
|
ed427f9600
|
Bug 959380 - 3/5 - Make gfxSurfaceType a typed enum - r=jrmuizel
find . -type f | grep -v '\./obj' | grep -v '\.hg' | xargs sed -i 's/\(^\|[^A-Za-z0-9_]\)gfxSurfaceType\(Image\|PDF\|PS\|Xlib\|Xcb\|Glitz\|Quartz\|Win32\|BeOS\|DirectFB\|SVG\|OS2\|Win32Printing\|QuartzImage\|Script\|QPainter\|Recording\|VG\|GL\|DRM\|Tee\|XML\|Skia\|Subsurface\|D2D\|Max\)\($\|[^A-Za-z0-9_]\)/\1gfxSurfaceType::\2\3/g'
|
2014-01-23 13:26:40 -05:00 |
Benoit Jacob
|
e5ed95579b
|
Bug 959380 - 2/5 - Make gfxImageFormat a typed enum - r=jrmuizel
find . -type f | grep -v \./obj | grep -v \.hg | xargs sed -i 's/\(^\|[^A-Za-z0-9_]\)gfxImageFormat\(ARGB32\|RGB24\|A8\|A1\|RGB16_565\|Unknown\)\($\|[^A-Za-z0-9_]\)/\1gfxImageFormat::\2\3/g'
|
2014-01-23 13:26:40 -05:00 |
Ehsan Akhgari
|
1b83407ce9
|
Bug 927728 - Part 1: Replace PRUnichar with char16_t; r=roc
This patch was automatically generated by the following script:
#!/bin/bash
# Command to convert PRUnichar to char16_t
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*modules/libmar*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name prtypes.h \
! -name Char16.h \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.c" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert PRUnichar char16_t
|
2014-01-04 10:02:17 -05:00 |
Ms2ger
|
fc0c5d7215
|
Bug 950143 - Remove the implicit conversion operator from nsIntSize to IntSize; r=roc
|
2013-12-31 10:06:12 +01:00 |
Birunthan Mohanathas
|
3440613a39
|
Bug 713082 - Part 2: Rename Util.h to ArrayUtils.h. r=Waldo
--HG--
rename : mfbt/Util.h => mfbt/ArrayUtils.h
|
2013-12-08 21:52:54 -05:00 |
Jacek Caban
|
0159728ca5
|
Bug 944427 - Fixed char16_t/wchar_t mismatch in dom/ r=bsmedberg
|
2013-12-04 13:19:38 +01:00 |
Birunthan Mohanathas
|
ffa374dc41
|
Bug 784739 - Switch from NULL to nullptr in dom/plugins/ipc/; r=ehsan
--HG--
extra : rebase_source : e04ab81d4686a4ab487ba51cb6a221d862760792
|
2013-10-23 16:34:46 -04:00 |
Nicolas Silva
|
e422a66147
|
Bug 922202 - Make PlanarYCbCrImage::Data forward-declarable and remove some header includes. r=bjacob
|
2013-10-01 17:57:50 -07:00 |
David Anderson
|
fd2cf49aa1
|
Combine AsyncChannel, SyncChannel, and RPCChannel into one class (bug 901789, r=cjones,bent).
--HG--
rename : ipc/glue/RPCChannel.cpp => ipc/glue/MessageChannel.cpp
rename : ipc/glue/RPCChannel.h => ipc/glue/MessageChannel.h
|
2013-09-27 18:42:08 -07:00 |
Benoit Jacob
|
55d6cf1e20
|
Bug 913872 - Take nested enums out of gfxASurface - 1/3 : automatic changes - r=jrmuizel
Generated by these regexes:
find . -name '*.h' -o -name '*.cpp' -o -name '*.mm' | grep -v '\.hg' | grep -v '^\.\/obj' | xargs sed -i 's/gfx[A-Za-z0-9_]*Surface\:\:[a-z]*\(\(ImageFormat\|SurfaceType\|ContentType\|MemoryLocation\)[0-9A-Za-z_]*\)/gfx\1/g'
find . -name '*.h' -o -name '*.cpp' -o -name '*.mm' | grep -v '\.hg' | grep -v '^\.\/obj' | xargs sed -i 's/gfx[A-Za-z0-9_]*Surface\:\:[a-z]*\(\(CONTENT_\|MEMORY_\)[0-9A-Za-z_]*\)/GFX_\1/g'
find . -name '*.h' -o -name '*.cpp' -o -name '*.mm' | grep -v '\.hg' | grep -v '^\.\/obj' | xargs sed -i 's/\(^\|[^A-Za-z0-9_]\)\(CONTENT_COLOR\|CONTENT_ALPHA\|CONTENT_COLOR_ALPHA\|CONTENT_SENTINEL\|MEMORY_IN_PROCESS_HEAP\|MEMORY_IN_PROCESS_NONHEAP\|MEMORY_OUT_OF_PROCESS\)\($\|[^A-Za-z0-9_]\)/\1GFX_\2\3/g'
find . -name '*.h' -o -name '*.cpp' -o -name '*.mm' | grep -v '\.hg' | grep -v '^\.\/obj' | xargs sed -i 's/\(^\|[^A-Za-z0-9_]\)\(ImageFormatARGB32\|ImageFormatRGB24\|ImageFormatA8\|ImageFormatA1\|ImageFormatRGB16_565\|ImageFormatUnknown\|SurfaceTypeImage\|SurfaceTypePDF\|SurfaceTypePS\|SurfaceTypeXlib\|SurfaceTypeXcb\|SurfaceTypeGlitz\|SurfaceTypeQuartz\|SurfaceTypeWin32\|SurfaceTypeBeOS\|SurfaceTypeDirectFB\|SurfaceTypeSVG\|SurfaceTypeOS2\|SurfaceTypeWin32Printing\|SurfaceTypeQuartzImage\|SurfaceTypeScript\|SurfaceTypeQPainter\|SurfaceTypeRecording\|SurfaceTypeVG\|SurfaceTypeGL\|SurfaceTypeDRM\|SurfaceTypeTee\|SurfaceTypeXML\|SurfaceTypeSkia\|SurfaceTypeSubsurface\|SurfaceTypeD2D\|SurfaceTypeMax\)\($\|[^A-Za-z0-9_]\)/\1gfx\2\3/g'
|
2013-09-24 16:45:13 -04:00 |
Martin Stransky
|
158c3250f0
|
Bug 914607 - Remove MOZ_WIDGET_GTK2. r=karlt
|
2013-09-23 09:21:35 -04:00 |
Robert O'Callahan
|
03e7828db2
|
Bug 910989. Remove nsTHashtable::Init, fallible allocation, and MT hashtables. r=ehsan,bsmedberg
--HG--
extra : rebase_source : 0787130b1814c74bfb38dc178de94022f0b2e64e
|
2013-09-02 20:41:57 +12:00 |
Doug Turner
|
3de9e6a0cf
|
Bug 906072 - Remove Maemo port. r=romaxa, r=ted, r=johns
|
2013-08-25 16:56:53 -07:00 |
David Zbarsky
|
dc4eb54b87
|
Bug 885804: Renaming in content/dom r=jlebar
|
2013-07-08 11:48:39 -04:00 |
Martin Stransky
|
e349c33aac
|
Bug 879515 - Port GTK2 to GTK3 - dom/plugins fixes. r=karlt
|
2013-06-10 08:36:26 -04:00 |
Benjamin Smedberg
|
2b9e63f722
|
Bug 831768 part 2 - Also defer painting from RecvUpdateBackground just as we did with RecvAsyncSetWindow, r=gfritzsche
--HG--
extra : rebase_source : c5b2001b1c32b1be7d5718bb72ae956706d572a4
|
2013-03-29 11:53:59 -04:00 |
Benjamin Smedberg
|
3d323b2c84
|
Bug 831768 - Delay async painting calls so that they never nest within RPC calls. The Adobe Flash implementation doesn't expect this reentry and sometimes deadlocks. The Apple Java stub doesn't expect this reentry and corrupts NPRuntime objects. r=gfritzsche
--HG--
extra : rebase_source : 4cf6c2cd28fbfdf259c3ed2250135810fb2511a7
|
2013-03-18 16:00:21 +01:00 |
Benoit Girard
|
52171e309d
|
Bug 673440 - add support for NPNVSupportsCompositingCoreAnimationPluginsBool. r=josh
|
2011-07-31 13:37:06 -04:00 |
Masatoshi Kimura
|
644064b7fe
|
Bug 841477 - Enable FAIL_ON_WARNINGS on MSVC in dom/plugins. r=benjamin
|
2013-02-28 07:44:52 +09:00 |
Jet Villegas
|
a8297ad818
|
Bug 832696 - gfx gets prefs in the plugin process r=jmuizelaar
|
2013-01-25 00:22:16 -05:00 |
Steven Michaud
|
c20100d89c
|
Bug 829284 - Unity plugin doesn't display in HiDPI mode. r=bgirard
|
2013-01-23 16:19:15 -06:00 |
Steven Michaud
|
da96bdf82e
|
Bug 833936 - NPNVcontentsScaleFactor inadvertently not supported for NPN_GetValue() when called from OOP plugins. r=bgirard
|
2013-01-23 15:55:41 -06:00 |
Benjamin Smedberg
|
1aa13912cb
|
Bug 559432 - Don't fail the assert if the cached actor is null... that probably just means we're in the process of tearing down the instance, r=josh
--HG--
extra : rebase_source : c7add3dc063f52127818fcdfc9b76e45ed45bf1a
|
2013-01-04 09:50:43 -05:00 |
Nicholas Nethercote
|
c36dea3127
|
Bug 824883 - Fix three warnings in dom/ code. r=bz.
--HG--
extra : rebase_source : 3763606a23b66493596787ca33cec32618efa2f1
|
2012-12-26 20:24:59 -08:00 |
Steven Michaud
|
87d8fe5aba
|
Bug 804606 - Stop Flash from crashing in CoreGraphics mode on accessing "our" CGContextRef outside of the call we use to pass it. r=bgirard
|
2012-12-16 16:39:29 -06:00 |
Matt Joras
|
da70d3f085
|
Bug 798033 - Removes 'using namespace' from dom headers - r=khuey
|
2012-11-10 10:45:52 -05:00 |
Ryan VanderMeulen
|
30d168a3da
|
Backed out changeset 5054c2552a30 (bug 798033) for b2g bustage.
|
2012-11-10 11:52:15 -05:00 |
Matt Joras
|
80ff2e8190
|
Bug 798033 - Removes 'using namespace' from dom headers - r=khuey
|
2012-11-10 10:45:52 -05:00 |
Nathan Froyd
|
4c61ef9ec5
|
Bug 806618 - rewrite PR_NewLogModule calls to not generate static initializers; r=ehsan
|
2012-10-29 19:32:10 -04:00 |
Steven Michaud
|
90b6155078
|
bug 794038 pt 3 - plugins support for resolution change. r=bgirard
|
2012-10-16 20:41:21 +01:00 |
Steven Michaud
|
144130a844
|
Bug 785667 - Make plugins work with HiDPI mode on the Mac. r=bgirard
|
2012-10-02 14:48:05 -05:00 |
Karl Tomlinson
|
a0733e0a31
|
b=788399 remove dead NPNVariable code r=bsmedberg
--HG--
extra : transplant_source : %7B%C1%0B%FBC%16%F0%15%B6%99%2C%D7%D4%C3%DD%B2n%A8%A8%CC
|
2012-09-27 12:22:41 +12:00 |
Ms2ger
|
711f1fd480
|
Bug 787933 - Stop using stdin types in IPC code; r=bsmedberg+cjones sr=cjones
|
2012-09-17 10:37:20 +02:00 |
Ehsan Akhgari
|
e368dc9c85
|
Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script. Here's the source of the script for
future reference:
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name nsXPCOMCID.h \
! -name prtypes.h \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.c" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t
convert PRIntn int
convert PRUintn unsigned
convert PRSize size_t
convert PROffset32 int32_t
convert PROffset64 int64_t
convert PRPtrdiff ptrdiff_t
convert PRFloat64 double
|
2012-08-22 11:56:38 -04:00 |
Karl Tomlinson
|
927f25cc6b
|
b=780059 tidy up API for FindVisualAndDepth r=mattwoodrow
--HG--
extra : rebase_source : c6022bd51aad41b7439531e7c3db1725aabda5e7
|
2012-08-20 16:20:37 +12:00 |
Ms2ger
|
94bf1722ed
|
Bug 743573 - Fix a number of build warnings in dom/; r=mounir
|
2012-08-07 09:06:29 +02:00 |
Martin Stransky
|
67790755e0
|
Bug 544088 - Support Xt plugins OOP. r=karlt
|
2012-08-01 16:34:08 -04:00 |
Oleg Romashin
|
4f8882a570
|
Bug 778024 - Bug 774139 will break Qt/Maemo builds due to #define signals. r=dougt NPODB
|
2012-08-01 12:00:44 -07:00 |
Benoit Girard
|
f7f7db01d2
|
Bug 724666 - Part 1: Refactor nsCoreAnimation support into azure QuartzSupport. r=jmuizelaar
--HG--
rename : gfx/thebes/nsIOSurface.h => gfx/2d/MacIOSurface.h
rename : gfx/thebes/nsCoreAnimationSupport.mm => gfx/2d/QuartzSupport.mm
|
2012-07-31 11:11:57 -04:00 |
Aryeh Gregor
|
d0ad5a7d0c
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
David Zbarsky
|
5a7819ef71
|
Bug 773025 - fix 2 warnings in dom/plugins r=jst
|
2012-07-11 20:55:59 -07:00 |
Martin Stransky
|
ac4d102d0d
|
Bug 627699 - Port GTK2 to GTK3, dom patch. r=karlt
|
2012-06-27 20:15:32 -04:00 |
Ryan VanderMeulen
|
6f685e76ee
|
Backout a07e9d98a7c6 (Bug 627699) due to build bustage.
|
2012-06-21 20:56:10 -04:00 |
Martin Stransky
|
03573fa79c
|
Bug 627699 - Port GTK2 to GTK3, dom patch. r=karlt
|
2012-06-21 20:44:38 -04:00 |
Bas Schouten
|
941c634393
|
Bug 734404 - Part 2: Integrate DXGI shared surface model into plugin code. r=roc
|
2012-05-30 07:14:30 +02:00 |
Gervase Markham
|
82ff7027aa
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
Masayuki Nakano
|
5c0d118456
|
Bug 630811 part.2 Replace nsInputEvent::isShift, nsInputEvent::isControl, nsInputEvent::isAlt and nsInputEvent::isMeta r=smaug
|
2012-04-25 12:00:02 +09:00 |
Oleg Romashin
|
84a412fcae
|
Bug 703155 - Port Mozilla Qt to Qt5. r=mark.finkle,mh+mozilla,dougt
|
2012-03-22 16:24:40 -07:00 |
Ginn Chen
|
29c2d84da6
|
Bug 731917 prevent plugins from corrupting the stack by making word-size stores to pointers to bool r=karlt
|
2012-03-02 14:17:26 +08:00 |