Chris Kitching
|
9e636000cd
|
Bug 794981 - Part 7: Storing a void* for mThread instead of a pthread_t is both nonportable and dangerous. r=kats
|
2013-09-09 08:57:37 -04:00 |
|
Mike Hommey
|
05b3f24e0e
|
Bug 912293 - Remove now redundant boilerplate from Makefile.in. r=gps
|
2013-09-05 09:01:46 +09:00 |
|
Mike Hommey
|
0865485bec
|
Bug 910248 - Add a crash report annotation indicating when the signal handler can't get the crash address. r=ted
|
2013-08-30 11:15:08 +09:00 |
|
Mike Hommey
|
51ff65dcd8
|
Bug 910074 - Move crash reporter annotations added in bug 867530 after both SetExceptionHandler call and xpcom initialization. r=ted
|
2013-08-30 11:11:42 +09:00 |
|
Doug Turner
|
5dc544505a
|
Bug 906072 - Remove Maemo port. r=romaxa, r=ted, r=johns
|
2013-08-25 16:56:53 -07:00 |
|
Brian O'Keefe
|
0ee041b9fd
|
Bug 875934 - Move LIBRARY_NAME to moz.build, batch 3; r=mshal
|
2013-08-15 09:02:09 -04:00 |
|
David Major
|
c6505e583f
|
Bug 765288 - Annotate user agent locale in crash report. r=ted
|
2013-08-26 10:33:10 -04:00 |
|
Ms2ger
|
19f3e043e3
|
Bug 904831 - Part b: Move unconditional MSVC_ENABLE_PGO definitions into moz.build; r=gps
|
2013-08-22 08:56:01 +02:00 |
|
Ms2ger
|
4d0ead0110
|
Bug 883284 - Part f: Move LIBXUL_LIBRARY into moz.build (p-z); r=glandium
|
2013-08-22 08:56:01 +02:00 |
|
Ms2ger
|
5c981f7ca9
|
Bug 906412 - Cleanup some random parts of the build system; r=mshal
|
2013-08-22 08:55:59 +02:00 |
|
Adrian Lungu
|
5b561cf5df
|
Bug 849204 - Linux geolocation: Init dbus_threads from the main thread. r=karlt
|
2013-08-21 03:03:16 -07:00 |
|
David Anderson
|
69dc419e91
|
Force OMTC on when enabling multi-process tabs (bug 897502, r=ncameron).
|
2013-08-19 00:13:32 -07:00 |
|
Mark Hammond
|
6df0bf43c6
|
Bug 904323 - use NS_DebugBreak() on Windows instead of sleeping to debug child processes. r=bent
|
2013-08-17 09:38:17 +10:00 |
|
Bill McCloskey
|
676069b2bc
|
Bug 902208 - Handle SIGINT in child processes (r=ted)
|
2013-08-14 14:48:32 -07:00 |
|
Brian O'Keefe
|
3dadb0e396
|
Bug 896177 - Remove useless config.mk includes; r=gps
|
2013-07-17 16:06:53 -04:00 |
|
Ms2ger
|
3d504dcb66
|
Merge latest PGO-green inbounc changeset to m-c.
|
2013-08-14 14:45:47 +02:00 |
|
Ms2ger
|
4579943f93
|
Bug 897909 - Cleanup some SIMPLE_PROGRAMS; r=gps
* * *
FOLD
|
2013-08-14 09:00:13 +02:00 |
|
Ehsan Akhgari
|
bb99d7ba18
|
Bug 904001 - Blocklist the old Relevant Knowledge DLLs; r=vlad
|
2013-08-13 13:27:21 -04:00 |
|
Nicholas Nethercote
|
849635b8f1
|
Bug 898914 (part 1) - Remove JSBool.
--HG--
extra : rebase_source : 2d202e0e5005a7f54724b1540481c15cde3ad52e
|
2013-08-08 15:53:04 -07:00 |
|
Ryan VanderMeulen
|
e8416c9ae6
|
Bug 901963 - Fix crash in mozilla::plugins::PluginInstanceChild::SetWindowLongPtrWHook on Win64. r=ehsan
|
2013-08-07 15:32:28 -04:00 |
|
Makoto Kato
|
b821619d67
|
Bug 899026 - some API hooks don't work on Windows 8 x64. r=ehsan
|
2013-08-05 11:13:53 +09:00 |
|
Makoto Kato
|
7e75c28488
|
Bug 900436 - WindowsDllNopSpacePatcher doesn't work on Windows 8. r=ehsan
|
2013-08-02 10:35:25 +09:00 |
|
Makoto Kato
|
855cf9c8c5
|
Bug 899009 - TestDllInterceptor.exe crashes after hooking NtWriteFile on Windows 8 + MSVS2012. r=ehsan
|
2013-07-31 10:23:32 +09:00 |
|
Ehsan Akhgari
|
085494b95d
|
Bug 895322 - Part 1: Replace the usages of MOZ_STATIC_ASSERT with C++11 static_assert; r=Waldo
This patch was mostly generated by running the following scripts on the codebase, with some
manual changes made afterwards:
# static_assert.sh
#!/bin/bash
# Command to convert an NSPR integer type to the equivalent standard integer type
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 "*.cc" \
-o -iname "*.mm" \) | \
xargs -n 1 `dirname $0`/assert_replacer.py #sed -i -e "s/\b$1\b/$2/g"
}
convert MOZ_STATIC_ASSERT static_assert
hg rev --no-backup mfbt/Assertions.h \
media/webrtc/signaling/src/sipcc/core/includes/ccapi.h \
modules/libmar/src/mar_private.h \
modules/libmar/src/mar.h
# assert_replacer.py
#!/usr/bin/python
import sys
import re
pattern = re.compile(r"\bMOZ_STATIC_ASSERT\b")
def replaceInPlace(fname):
print fname
f = open(fname, "rw+")
lines = f.readlines()
for i in range(0, len(lines)):
while True:
index = re.search(pattern, lines[i])
if index != None:
index = index.start()
lines[i] = lines[i][0:index] + "static_assert" + lines[i][index+len("MOZ_STATIC_ASSERT"):]
for j in range(i + 1, len(lines)):
if lines[j].find(" ", index) == index:
lines[j] = lines[j][0:index] + lines[j][index+4:]
else:
break
else:
break
f.seek(0, 0)
f.truncate()
f.write("".join(lines))
f.close()
argc = len(sys.argv)
for i in range(1, argc):
replaceInPlace(sys.argv[i])
--HG--
extra : rebase_source : 4b4a4047d82f2c205b9fad8d56dfc3f1afc0b045
|
2013-07-18 13:59:53 -04:00 |
|
Ehsan Akhgari
|
3717325909
|
Bug 872127 - Part 2: Replace mozilla/StandardInteger.h with stdint.h; r=Waldo,ted
|
2013-07-30 10:25:31 -04:00 |
|
Joshua Cranmer
|
535f68a222
|
Bug 884061 - Part 3v: Use NS_DECL_THREADSAFE_ISUPPORTS in toolkit/, r=Mossop
--HG--
extra : rebase_source : ad2b2f20219b42b192c313b6fa9da3383f904805
|
2013-07-18 21:24:15 -05:00 |
|
Suyash Agarwal
|
c2e88b3f13
|
Bug 890037 - Remove extra space from the output of "thunderbird -version". r=bsmedberg
|
2013-07-18 16:29:17 -04:00 |
|
Mike Shal
|
fb38e981d0
|
Bug 889787 - Define XP_LINUX globally; r=ted
|
2013-07-16 17:10:10 -04:00 |
|
Tom Schuster
|
3864c304c1
|
Bug 886903 - Send correct UserAgent data for content process. r=jdm
|
2013-04-22 18:41:59 +02:00 |
|
Ryan VanderMeulen
|
97083e557a
|
Backed out 4 changesets (bug 893858, bug 868859, bug 886903) for Linux debug mochitest-other crashes on a CLOSED TREE.
Backed out changeset 0ded4854067b (bug 886903)
Backed out changeset ca8afb897e13 (bug 893858)
Backed out changeset c15f503a96cc (bug 868859)
Backed out changeset 6a788f399a7f (bug 868859)
|
2013-07-17 12:43:59 -04:00 |
|
Tom Schuster
|
f5ccc808eb
|
Bug 886903 - Send correct UserAgent data for content process. r=jdm
|
2013-04-22 18:41:59 +02:00 |
|
Brian O'Keefe
|
f98dd45a72
|
Bug 883502 - Part 1: Move 'chromium_config.mk' includes after rules.mk. r=gps
|
2013-07-04 08:28:43 -04:00 |
|
Benoit Girard
|
103cc87697
|
Bug 892861 - Remove useless -D flags 'IMPL_THEBES,_IMPL_NS_GFX,...'. r=glandium
|
2013-07-12 08:56:54 -04:00 |
|
Trevor Saunders
|
238525e2d8
|
bug 887483 - remove a bunch of useless assignments to FORCE_STATIC_LIB implied by LIBXUL_LIBRARY=1 r=mshal
|
2013-07-11 11:06:34 -04:00 |
|
Roberta De Viti
|
b67c76bde9
|
Bug 865188 - Remove Storage support for profile special database. r=mak
|
2013-07-11 10:00:48 +02:00 |
|
Ryan VanderMeulen
|
1d7eff0f7a
|
Backed out changeset b7d6458d2a3c (bug 887483) for apparently causing Android robocop-2 failures.
|
2013-07-10 13:51:28 -04:00 |
|
Trevor Saunders
|
d82043f811
|
bug 887483 - rm a bunch of useless assignments to FORCE_STATIC_LIB r=mshal
|
2013-06-25 14:29:26 -04:00 |
|
Emanuel Hoogeveen
|
9e0ec18236
|
Bug 890714 - Fix mixed line endings. r=joe, r=jesup
|
2013-07-08 16:33:15 -04:00 |
|
David Anderson
|
a52a14df6e
|
Rewrite CPOWs to use one actor per process (bug 853209, r=billm,bholley,smaug).
|
2013-07-03 00:24:32 -07:00 |
|
Trevor Saunders
|
5d9268dfa8
|
bug 886526 - remove nsStaticComponents.{h,cpp} r=bsmedberg
|
2013-06-15 05:50:25 -04:00 |
|
Trevor Saunders
|
90fb8e6096
|
bug 886526 - remove XPCOM_TRANSLATE_NSGM_ENTRY_POINT r=bsmedberg
|
2013-06-15 02:33:35 -04:00 |
|
Benoit Girard
|
945cb3c483
|
Bug 844288 - Dual link libxul.so and libxul-unit.so and replace enable-gtest by enable-test r=ted,glandium
- Remove enable GTest
- Add a general target to create gtestxul
- Update mach target
- Run GTest from make check
--HG--
rename : gfx/2d/unittest/GTestMain.cpp => gfx/tests/gtest/TestMoz2D.cpp
rename : gfx/layers/TestTiledLayerBuffer.cpp => gfx/tests/gtest/TestTiledLayerBuffer.cpp
extra : rebase_source : 862c39b9145328c8e9f85ae9d1963af374af76f1
|
2013-03-11 14:47:40 -04:00 |
|
Makoto Kato
|
c182867c5d
|
Bug 870218 - Add support for hooking NtWriteFile on Win64; r=ehsan
|
2013-06-12 15:22:55 -04:00 |
|
Brian R. Bondy
|
c713f259fc
|
Bug 874323 - Start updater manually for Metro to apply update. r=rstrong
|
2013-06-12 10:31:10 -04:00 |
|
Martin Stransky
|
572a55316c
|
Bug 877626 - Port GTK2 to GTK3 - build config - xpcom, toolkit, accessible, xulrunner dirs. r=ted, r=karlt
|
2013-06-10 08:36:26 -04:00 |
|
Mark Hammond
|
0f0f2c2c3f
|
Bug 875214 - child processes on Windows now attach to the parent's console. r=aklotz
|
2013-05-30 23:23:50 +10:00 |
|
Phil Ringnalda
|
ea17398276
|
Back out dc76402b8471 (bug 844288) on suspicion of breaking dep builds
CLOSED TREE
|
2013-05-31 07:39:56 -07:00 |
|
Benoit Girard
|
5a4e5c64c2
|
Bug 844288 - Dual link libxul.so and libxul-unit.so and replace enable-gtest by enable-test r=ted,glandium
- Remove enable GTest
- Add a general target to create gtestxul
- Update mach target
- Run GTest from make check
--HG--
rename : gfx/2d/unittest/GTestMain.cpp => gfx/tests/gtest/TestMoz2D.cpp
rename : gfx/layers/TestTiledLayerBuffer.cpp => gfx/tests/gtest/TestTiledLayerBuffer.cpp
extra : rebase_source : 5b9be0892323195d4e24f11ae785f0663ff38fd0
|
2013-03-11 14:47:40 -04:00 |
|
Timothy Arceri
|
b34c47ba20
|
Bug 877409 - Remove old GTK_CHECK_VERSION/gtk_check_version for versions of GTK already covered by the minimum GTK build requirement 2.10. r=karlt
|
2013-05-30 08:10:02 -04:00 |
|
Phil Ringnalda
|
315cb76195
|
Back out 816311e43409 (bug 844288) on suspicion of causing dep OS X universal builds to fail in packaging
CLOSED TREE
|
2013-05-29 23:42:20 -07:00 |
|