Kyle Huey
|
d3ebb23e90
|
Bug 911258: Part 2 - Kill the exception service. r=bsmedberg
|
2013-09-08 20:28:49 -07:00 |
|
Robert O'Callahan
|
8ca63f18ef
|
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 |
|
Phil Ringnalda
|
3914af6be4
|
Back out 4537337759b7 (bug 910517) because nobody expects the talos inquisition
--HG--
rename : content/canvas/src/WebGLMemoryReporterWrapper.h => content/canvas/src/WebGLMemoryMultiReporterWrapper.h
|
2013-09-04 22:42:06 -07:00 |
|
Nicholas Nethercote
|
86b7ae4c3a
|
Bug 910517 - Remove nsIMemoryReporter, and rename nsIMemoryMultiReporter as nsIMemoryReporter. r=mmcr8.
--HG--
rename : content/canvas/src/WebGLMemoryMultiReporterWrapper.h => content/canvas/src/WebGLMemoryReporterWrapper.h
extra : rebase_source : 9142be547b2eeef37a8073a710ce23070f98cf65
|
2013-08-27 16:24:51 -07:00 |
|
Mike Hommey
|
05b3f24e0e
|
Bug 912293 - Remove now redundant boilerplate from Makefile.in. r=gps
|
2013-09-05 09:01:46 +09:00 |
|
Nicholas Nethercote
|
d74157039d
|
Bug 911020 - Introduce js/TypeDecls.h, which holds very commonly used type declarations from the JS engine. r=luke.
--HG--
extra : rebase_source : 008ef689989f93b46627b8be8608bdbc544ca3a2
|
2013-08-27 19:59:14 -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 |
|
Nicholas Nethercote
|
48e65dbbec
|
Bug 831193 (part 18) - Don't use NS_MEMORY_REPORTER_IMPLEMENT for the ICU reporter. r=jlebar.
--HG--
extra : rebase_source : 5e5b3d8f677e6bb6cfeba17d937d5837e4aafd91
|
2013-08-22 22:24:16 -07:00 |
|
Nicholas Nethercote
|
1a1328929c
|
Bug 831193 (part 17) - Don't use NS_MEMORY_REPORTER_IMPLEMENT in xpcom/. r=jlebar.
--HG--
extra : rebase_source : 7e2984a99fb7e00aa0ea6bebc23e23e4c99e0b1e
|
2013-01-17 21:43:21 -08:00 |
|
Gabriele Svelto
|
619cc7ccf1
|
Bug 907798 - Remove TimeStamp.h includes from source files that do not need it; r=ehsan
|
2013-08-24 08:12:51 +02:00 |
|
Ms2ger
|
b5df99e7e3
|
Revert this CLOSED TREE to changeset 4d3e221584a0.
|
2013-08-24 13:31:48 +02:00 |
|
Gabriele Svelto
|
b6e8140bfc
|
Bug 907798 - Remove TimeStamp.h includes from source files that do not need it; r=ehsan
|
2013-08-24 08:12:51 +02:00 |
|
Ms2ger
|
4af9d89266
|
Merge m-c to inbound
|
2013-08-22 10:38:48 +02: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
|
584215995c
|
Bug 903844 - Add/update include-what-you-use annotations for various files; r=ehsan+khuey
|
2013-08-22 08:31:21 +02:00 |
|
Nicholas Nethercote
|
b89a8ac1c0
|
Bug 905017 (part 1) - Minimize inclusions of JS engine headers in .h and .idl files. r=billm.
--HG--
extra : rebase_source : 984c61ab12f46be0509b1ce0d458d9a6e5841c64
|
2013-08-17 15:50:18 -07:00 |
|
Michael Harrison
|
120cabdde3
|
Bug 486080 - Remove nsIByteBuffer and nsIUnicharBuffer. r=bsmedberg
|
2013-08-20 11:03:50 +00:00 |
|
Brian O'Keefe
|
3dadb0e396
|
Bug 896177 - Remove useless config.mk includes; r=gps
|
2013-07-17 16:06:53 -04:00 |
|
Kyle Huey
|
8ef412bec4
|
Bug 901630: Remove support for the cc thread. r=mccr8
|
2013-08-13 10:45:32 -07:00 |
|
Ms2ger
|
fe9c33f5f4
|
Bug 897921 - Remove some dead assignments in makefiles; r=mshal
|
2013-08-02 09:03:55 +02: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 |
|
Jeff Walden
|
70e6b51fcb
|
Bug 896124 - Implement a JS_Init() JSAPI function, to be called before any other JSAPI operations (except JS_SetICUMemoryFunctions) are performed, to centralize whole-engine initialization tasks. r=bsmedberg for the XPCOM bits, r=luke for the JS bits
--HG--
extra : rebase_source : fd308ab3bd76c67a0b128eaefae3edf177893fe1
|
2013-07-19 20:14:34 -07:00 |
|
Ivan Alagenchev
|
c4a3abe109
|
Bug 846918: Adds internal httpchannel idl for communication between documents and channels. r=jlebar
|
2013-07-26 08:37:02 -07:00 |
|
Ryan VanderMeulen
|
d6be8d390f
|
Backed out 3 changesets (bug 896124, bug 784739, bug 894026) for Windows checktest orange on a CLOSED TREE.
Backed out changeset 631b3d5d54f4 (bug 896124)
Backed out changeset 5e1dd28ede5d (bug 894026)
Backed out changeset c10c0a6270ec (bug 784739)
|
2013-07-26 00:08:51 -04:00 |
|
Jeff Walden
|
b023ffcb98
|
Bug 896124 - Implement a JS_Init() JSAPI function, to be called before any other JSAPI operations are performed, to centralize whole-engine initialization tasks. r=bsmedberg for the XPCOM bits, r=luke for the JS bits
|
2013-07-19 20:14:34 -07:00 |
|
Mike Shal
|
fb38e981d0
|
Bug 889787 - Define XP_LINUX globally; r=ted
|
2013-07-16 17:10:10 -04: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 |
|
Olli Pettay
|
6767d0a1a8
|
bug 789919, (snow-white) make addref/release of CCable objects faster by removing indirect refcnt increase/decrease, r=mccr8, test changes r=ehsan
--HG--
extra : rebase_source : 2a3b22425c14d6daedc91d62a652c34431acd2fb
|
2013-07-09 13:30:58 -04:00 |
|
Arnaud Sourioux
|
d0e4de4609
|
Bug 744115 - Disallow dispatching events after threads shut down. r=bsmedberg
|
2013-07-07 16:23:43 -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 |
|
Joey Armstrong
|
f7feff6efe
|
bug 883350: move SDK_HEADERS to mozbuild (file batch #1) r=mshal
|
2013-07-01 17:24:53 -04:00 |
|
Andrew McCreight
|
7f974cd419
|
Bug 883657, part 1 - Run mozJSComponentLoader::UnloadModules() before the shutdown CC. r=bsmedberg
|
2013-06-25 08:42:39 -07:00 |
|
Chris Peterson
|
1a1a819327
|
Bug 883729 - Fix -Wnull-conversion warnings in xpcom. r=bsmedberg
|
2013-06-13 20:57:47 -07:00 |
|
Julian Seward
|
38e97ed8fa
|
Bug 872496 - Allow early registration of stack tops, to improve native unwind quality. r=bgirard.
|
2013-05-28 14:03:38 +02:00 |
|
Mike Shal
|
6f32ddf61c
|
Bug 864774 - Part 2: Move CPPSRCS to moz.build as CPP_SOURCES; r=joey CLOSED TREE
From 9e0ba7f425143f545eb6c4b26a9a96b5ade4d8e9 Mon Sep 17 00:00:00 2001
|
2013-04-23 17:54:15 -04:00 |
|
Ryan VanderMeulen
|
1732f4e103
|
Backed out changesets 073791f33ab7 and 7ac5779a426c (bug 859756) for causing intermittent Windows build failures.
CLOSED TREE
|
2013-05-17 17:30:20 -04:00 |
|
Mihai Sucan
|
7c419043ce
|
Bug 859756 - [browserconsole] Add timestamp, category and window IDs to nsIConsoleMessages; r=bz
|
2013-05-16 20:23:46 +03:00 |
|
Ted Mielczarek
|
47d7af59de
|
bug 871712 - make MSVC PGO opt-in per-directory, and opt-in in the directories that matter. r=glandium
|
2013-05-16 09:33:26 -04:00 |
|
Mats Palmgren
|
62ca06180b
|
Bug 867530 - Initialize the poison value in XPCOM startup and annotate the values in crash reporter. r=bsmedberg
|
2013-05-07 20:48:59 +02:00 |
|
Andrew McCreight
|
ed1e8c70fc
|
Bug 863085, part 2 - remove NS_CycleCollectorForget2 from some XPCOM glue. r=bsmedberg
|
2013-05-01 15:36:03 -07:00 |
|
Andrew McCreight
|
0bafa2c0cd
|
Bug 866151 - Clean up usage of nsCycleCollector.h and nsCycleCollectorUtils.h. r=smaug,bsmedberg
--HG--
rename : xpcom/base/nsCycleCollector.h => xpcom/glue/nsCycleCollectionJSRuntime.h
|
2013-04-30 10:41:22 -07:00 |
|
Aryeh Gregor
|
e78504c9a9
|
Bug 859817 - Remove implicit conversions from raw pointer to already_AddRefed; r=Ms2ger
|
2013-04-22 14:15:59 +03:00 |
|
Bobby Holley
|
7d54cb2cdb
|
Bug 864363 - Force layout initialization in XPCOM initialization. r=bsmedberg
|
2013-04-22 16:49:52 -04:00 |
|
Bobby Holley
|
6e33cfe030
|
Back out bug 863646 for make check orange (TestStartupCache).
|
2013-04-19 18:28:53 -04:00 |
|
Bobby Holley
|
cc39b0337c
|
Bug 863646 - Force layout initialization in XPCOM initialization. r=bsmedberg
|
2013-04-19 16:03:24 -04:00 |
|
Benoit Girard
|
fe6bc7a71e
|
Bug 862500 - Properly shutdown profiler in xpcshell, shutdown and error cases. r=snorp
--HG--
extra : rebase_source : 22eeccdcee83e3fd03687e6b969b143502a9c5fc
|
2013-04-18 11:34:49 -04:00 |
|