Ryan VanderMeulen
|
543edbebda
|
Backed out a57ade621efb, 2a8fef2bd228, 632ce3e7d3ef (bug 799638) for bustage.
|
2012-10-13 21:22:30 -04:00 |
|
Benoit Girard
|
7dce5de5cf
|
Bug 799638 - Use timeline events as profiler startup markers. r=taras
|
2012-10-13 21:03:18 -04:00 |
|
Ed Morley
|
bd0d1f6c0a
|
Bug 795393 - Remove instances of "ifneq (mobile,$(MOZ_BUILD_APP))" since they're now always true; r=ted
|
2012-10-06 16:46:09 +01:00 |
|
Gene Lian
|
60d335c589
|
Bug 793970 - Reuse nsAppStartup's watchdog to compulsively power-off/reboot/quit Gecko if profile synchronizing hangs. r=cjones
|
2012-10-02 15:26:32 +08:00 |
|
Chris Jones
|
ec1152c106
|
Bug 787436: Implement a "really really quit" watchdog to monitor normal shutdown and exit Gecko in a hurry if it takes too long. r=bent
|
2012-09-19 16:13:31 -07:00 |
|
Ehsan Akhgari
|
70ba385729
|
Bug 792502 - Kill the FunctionTimer code; r=vlad
|
2012-09-19 16:59:38 -04:00 |
|
Jan Beich
|
70310b1f0e
|
Bug 789693 - Unify CalculateProcessCreationTimestamp() on OS X and BSDs. r=tglek
|
2012-09-11 21:49:39 -04:00 |
|
Randell Jesup
|
29ac5c0b8c
|
Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg
|
2012-09-01 22:35:17 -04:00 |
|
Landry Breuil
|
d4d6157146
|
Bug 785738 Part 3: use PRTime instead of int64_t where appropriate; r=ehsan
|
2012-08-30 09:10:35 +02:00 |
|
Ehsan Akhgari
|
8c296bbcd4
|
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 |
|
Nathan Froyd
|
449735ba4a
|
Bug 779298 - part 1: store shutdown times in profile directory and initialize class members; r=dougt
|
2012-08-01 12:06:28 -04:00 |
|
Ed Morley
|
19f841495d
|
Backout c4b249ca469b & 5bd90df027d0 (bug 779298) for assertions on OS X
|
2012-08-16 17:00:10 +01:00 |
|
Nathan Froyd
|
37667e07ef
|
Bug 779298 - part 1: store shutdown times in profile directory and initialize class members; r=dougt
|
2012-08-01 12:06:28 -04:00 |
|
Aryeh Gregor
|
982100775b
|
Bug 780618 - Move all error codes to nsError.h; r=ehsan
|
2012-07-27 17:03:27 +03:00 |
|
Rafael Ávila de Espíndola
|
f643277414
|
Bug 780272 - Audit calls to MozillaUnRegisterDebugFD. r=jlebar.
--HG--
extra : rebase_source : 53672602bfd370626916bcd0f5bc71859f8520c2
|
2012-08-10 12:40:21 -04:00 |
|
Mike Hommey
|
c1b35e7b2a
|
Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted
|
2012-08-04 20:26:44 +02:00 |
|
Nicolas Chaim
|
94ccc73846
|
Bug 770317: Fix class name in mof file. r=glandium
|
2012-07-31 15:51:08 -04:00 |
|
Aryeh Gregor
|
57c0ad57fb
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Rafael Ávila de Espíndola
|
b2da18e471
|
Bug 777913 - shutdown timings for multiple sessions are not recorded correctly. r=nfroyd.
|
2012-07-27 10:28:43 -04:00 |
|
Nathan Froyd
|
5e07ea1a36
|
Bug 756142 - part 2: expose the shutdown duration through nsIAppStartup; r=bsmedberg
|
2012-07-10 11:50:35 -04:00 |
|
Nathan Froyd
|
e791e1e207
|
Bug 756142 - part 1: make it possible to get the timestamp filename multiple times; r=bsmedberg
|
2012-07-10 11:49:57 -04:00 |
|
Nicolas Chaim Echeverria
|
cf4c196ebe
|
Bug 770317: Add an xperf probe for XPCOM shutdown event. r=glandium
|
2012-07-20 13:39:23 -04:00 |
|
Ehsan Akhgari
|
635cf2dfd2
|
Bug 758992 - Make the classes which use the XPCOM nsISupports implementation macros final, to avoid the warning about deleting using a pointer to a base class with virtual functions and no virtual dtor (more toolkit parts); blanket-r=bzbarsky
|
2012-07-18 12:12:55 -04:00 |
|
Nathan Froyd
|
5b30baa4c3
|
Bug 370750 - consolidate mochitest files installation; r=glandium
With assistance on the patch from Ms2ger, Waldo, and Mossop.
|
2012-07-03 16:49:02 -04:00 |
|
Rafael Ávila de Espíndola
|
693add4765
|
Bug 771083 - Shutdown telemetry causes "Assertion failure: r == count, at xpcom/build/mozPoisonWriteMac.cpp:194"
White list the shutdown time fd. r=benjamin.
|
2012-07-06 20:44:43 -04:00 |
|
Rafael Ávila de Espíndola
|
37613a5ba3
|
Bug 763361 - shutdown. sigsegv during freelibrary.
Call RecordShutdownEndTimeStamp from XRE_main. r=benjamin.
|
2012-07-06 18:29:53 -04:00 |
|
Mike Hommey
|
b1b7ef4283
|
Bug 764021 - Add Startup Timeline probe for when entering main(). r=taras,r=bsmedberg
|
2012-06-15 08:23:08 +02:00 |
|
Honza Bambas
|
f29e1ac591
|
Bug 720778 - Important threads should have a name for better debugability, r=bsmith, sr=bsmedberg+glandium
|
2012-06-12 19:06:20 +02:00 |
|
Geoff Lankow
|
1214b72681
|
Bug 749930 - Replace uses of nsILocalFile with nsIFile (compiled code only); r=bsmedberg
|
2012-06-06 14:08:30 +12:00 |
|
Landry Breuil
|
64230ede81
|
Bug 755336 - Use PRInt64 replacedLockTime since XPIDL expects a PRInt64, fixes build on OpenBSD. r=bsmedberg
|
2012-05-22 20:21:45 -04:00 |
|
Gervase Markham
|
87620f5676
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Rafael Ávila de Espíndola
|
d2a27cf30e
|
Bug 753461 - Write shutdown time to disk. r=taras.
|
2012-05-18 08:13:30 -04:00 |
|
Rafael Ávila de Espíndola
|
b9c894a883
|
Bug 755336 - convert integer types in nsAppStartup.cpp. r=benjamin.
|
2012-05-17 13:22:28 -04:00 |
|
Matthew Noorenberghe
|
d78eeb8e8a
|
Bug 731613 - Don't track startup crashes when XRE_PROFILE_PATH is set (from restart or profile manager). r=Mossop
--HG--
extra : rebase_source : c16c158eeec49521f60b1afdfa32a64e9dbda2c7
|
2012-03-14 17:08:59 -07:00 |
|
Matthew Noorenberghe
|
2feb550bf3
|
Bug 723802 - Add telemetry for startup crash detection (2/2). r=dolske,taras
--HG--
extra : rebase_source : 60d3f26787475c0321392adfd53766d48158a142
|
2012-03-12 15:41:26 -07:00 |
|
Matthew Noorenberghe
|
404fc8f36b
|
Bug 723802 - Add telemetry for startup crash detection (1/2) - timeline portion. r=taras
--HG--
extra : rebase_source : 8f44c2d0a46f87025484552022c0a32d3ce5c7b0
|
2012-02-09 15:49:33 -08:00 |
|
Mike Hommey
|
99e3690cd6
|
Bug 686805 part 7 - Display linker stats on each Startup Timeline event. r=tglek,r=khuey
|
2012-02-22 08:12:15 +01:00 |
|
Matthew Noorenberghe
|
7095f29b54
|
Bug 726043 - Rev uuids for bug 294260 and add NS_ENSURE_ARG_POINTER. r=Mossop
--HG--
extra : rebase_source : 6dd8139b7efd86fe55668de56494d43e4726a1b6
|
2012-02-10 12:07:19 -08:00 |
|
Justin Wood
|
0055bde399
|
Backed out changeset 6d3493e971ea due to bad rebase
|
2012-02-13 08:54:50 -05:00 |
|
Justin Wood
|
7b08314831
|
Bug 722262 - allow other apps to expand the list of dependentlibs easily. r=glandium
|
2012-02-12 09:00:40 -05:00 |
|
Panagiotis Koutsourakis
|
52aeae032c
|
Bug 702388 - Convert some more Makefiles to use |TEST_DIRS += foo|; r=khuey
|
2012-02-10 21:06:56 +00:00 |
|
Matthew Noorenberghe
|
fde3087a8e
|
Bug 294260 - Safe Mode: Auto detect previous start-up failure and offer to start in safe mode r=bsmedberg,Mossop
--HG--
rename : toolkit/components/startup/tests/Makefile.in => toolkit/components/startup/tests/browser/Makefile.in
extra : rebase_source : 8df6b163173362ae80832eb3667e04bb817280b3
|
2011-11-07 21:20:42 -08:00 |
|
Matthew Noorenberghe
|
b9944a7e6f
|
Bug 294260 - Backout toolkit/components/startup/tests portion of bug 692625 to relocate tests/browser
--HG--
rename : toolkit/components/startup/tests/Makefile.in => toolkit/components/startup/tests/browser/Makefile.in
rename : toolkit/components/startup/tests/beforeunload.html => toolkit/components/startup/tests/browser/beforeunload.html
extra : rebase_source : b42154117d2793da6e91ed1e4c3ce14f3f04fc3f
|
2012-01-18 11:24:06 -08:00 |
|
David Rajchenbach-Teller
|
10a61d376a
|
Bug 696033 - Add xperf probes (sample startup probes); r=glandium
|
2012-02-05 22:49:37 +00:00 |
|
Mike Hommey
|
c4e4acd545
|
Bug 718737 - Add a startup timeline event on the first nsDocShell::LoadURI for non about:blank content. r=bz,r=tglek
|
2012-01-19 08:40:18 +01:00 |
|
Ed Morley
|
720a7cff66
|
Bug 692625 - Move toolkit/components/startup/tests/browser/ to toolkit/components/startup/tests/; r=dtownsend
--HG--
rename : toolkit/components/startup/tests/browser/Makefile.in => toolkit/components/startup/tests/Makefile.in
rename : toolkit/components/startup/tests/browser/beforeunload.html => toolkit/components/startup/tests/beforeunload.html
rename : toolkit/components/startup/tests/browser/browser_bug511456.js => toolkit/components/startup/tests/browser_bug511456.js
rename : toolkit/components/startup/tests/browser/browser_bug537449.js => toolkit/components/startup/tests/browser_bug537449.js
|
2011-12-16 09:11:23 +00:00 |
|
Rafael Ávila de Espíndola
|
8671ece279
|
Bug 708034 - Don't #include __FILE__. r=glandium.
|
2011-12-08 15:43:05 -05:00 |
|
Cameron McCormack
|
0fb03e07e0
|
Bug 703176 - Ensure all browser chrome mochitests do fail when uncaught JS exceptions occur. (v1.1) r=jmaher
|
2011-12-02 23:25:03 +11:00 |
|
Ms2ger
|
5a89875ff5
|
Bug 705186 - Use IDL for nsIAppStartup::GetStartupInfo; r=bholley
|
2011-11-26 11:30:20 +01:00 |
|
Mike Hommey
|
4ce8fec0ff
|
Bug 702764 part 3 - Add linker initialization and library loading timestamps for nsAppStartup::GetStartupInfo. r=tglek
|
2011-11-18 08:54:37 +01:00 |
|