Ehsan Akhgari
|
8cc30b88b2
|
Bug 792502 - Kill the FunctionTimer code; r=vlad
|
2012-09-19 16:59:38 -04:00 |
Makoto Kato
|
1356f06137
|
Bug 784912 - nsIStreamListener.onDataAvailable should handle 64-bit offset. r=honza
|
2012-09-06 11:41:02 +09:00 |
Randell Jesup
|
65539ef89c
|
Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg
|
2012-09-01 22:35:17 -04:00 |
Nicolas Chaim Echeverria
|
b8470437f3
|
Bug 726125: Certificates of signed extensions were getting validated on each startup. r=taras, sr=bzbarsky
|
2012-08-30 16:58:55 -04:00 |
Landry Breuil
|
3f08ff498e
|
Bug 785738 Part 3: use PRTime instead of int64_t where appropriate; r=ehsan
|
2012-08-30 09:10:35 +02:00 |
Andrea Marchesini
|
46273c945f
|
Bug 783562 - blob: protocol wrong Content-Type header. r=sicking
|
2012-08-27 19:34:30 -04:00 |
Ben Turner
|
7370f46298
|
Bug 784726 - 'Remove old IPC::URI'. r=cjones+khuey.
--HG--
rename : ipc/glue/IPCSerializableParams.ipdlh => ipc/glue/InputStreamParams.ipdlh
extra : transplant_source : %A6%BC%8B%8D%3A_%7Df%2B%FE%AA%94%81%AB%CAW%15K%A7%03
|
2012-08-23 12:33:46 -07: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 |
Aryeh Gregor
|
4e199a1679
|
Bug 780618 - Move all error codes to nsError.h; r=ehsan
|
2012-07-27 17:03:27 +03:00 |
Honza Bambas
|
15daadba69
|
Bug 215450: Allow uploading of files greater than 2gb in size. Involves making input streams 64-bit capable. Significant work done by Makoto Kato, finished by Honza Bambas. r=hbambas,bsmedberg,jdrew,sicking
|
2012-08-10 22:44:11 -04:00 |
Mike Hommey
|
70d7c821af
|
Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted
|
2012-08-04 20:26:44 +02:00 |
Aryeh Gregor
|
c81630fddb
|
Bug 777292 - Convert incorrect conversions to nsresult and fix named constants; r=ehsan
|
2012-07-27 16:59:29 +03:00 |
Aryeh Gregor
|
d0ad5a7d0c
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
Joshua Cranmer
|
a1186c1020
|
Bug 773637 - Kill NS_SCRIPTABLE annotations, Part 1: Remove NS_*PARAM annotations. r=ehsan
--HG--
extra : rebase_source : a0b4bc50fece36d9a90fed61431635948bfa33b5
|
2012-07-06 15:14:07 -05:00 |
Mike Hommey
|
125aebf06d
|
Bug 763651 - Link the javascript engine against zlib. r=khuey
|
2012-07-12 08:30:59 +02:00 |
Fabrice Desré
|
3fe7c66a25
|
Bug 769350 - Implement trusted/certified app scheme support [r=vingtetun]
|
2012-07-11 08:38:36 -07:00 |
Nathan Froyd
|
bfff055672
|
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 |
Makoto Kato
|
1e533fbd2e
|
Bug 769533 - Part 1. Replace AppendWithConversion with others. r=jlebar
|
2012-07-06 18:43:28 +09:00 |
Ehsan Akhgari
|
2e1fce4d51
|
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 (libjar parts); r=glandium
|
2012-06-12 23:27:07 -04:00 |
Geoff Lankow
|
5cefea8480
|
Bug 749930 - Replace uses of nsILocalFile with nsIFile (compiled code only); r=bsmedberg
|
2012-06-06 14:08:30 +12:00 |
Gervase Markham
|
82ff7027aa
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
Benjamin Smedberg
|
eaa4878487
|
Bug 734847 part 2 - treewide changes resulting from the default-infallibility of hashtables; either remove useless result checks, or use the fallible version of APIs, depending on context, r=jlebar
--HG--
extra : rebase_source : 844b008c5167e6ca39a7ba9eeec8b30672938704
|
2012-05-18 13:30:49 -04:00 |
David Rajchenbach-Teller
|
6f228de18f
|
Bug 728171 - Use Scoped.h throughout the code. r=cjones
|
2012-04-12 12:21:24 +02:00 |
Richard Newman
|
f8c8184e2b
|
Backout 0e03eb171e08 (Bug 743574 - Deprecate DOMException.code). a=bustage
|
2012-04-11 15:33:37 -07:00 |
Chris Coulson
|
33f3a2b3e8
|
Bug 737463 - nsJARInputStream leaks if it is closed before the stream is inflated. r=mwu
|
2012-04-11 17:55:22 -04:00 |
David Rajchenbach-Teller
|
b219309fc2
|
Bug 728171 - Use Scoped.h throughout the code. r=cjones
|
2012-04-11 18:59:10 +02:00 |
Nathan Froyd
|
0b33697a2e
|
Bug 717061 - add tests for uncompressed->gzip conversion; r=mossop
|
2012-02-13 12:05:16 -08:00 |
Nathan Froyd
|
99a72f5964
|
Bug 717061 - fix uncompressed->gzip conversion in nsDeflateConverter; r=mossop
|
2012-01-25 18:27:48 -08:00 |
Nathan Froyd
|
5afd06737a
|
Bug 711297 - add comment reading to nsZipArchive; r=taras
|
2012-02-22 13:45:09 -05:00 |
Dão Gottwald
|
f47605cab1
|
Backed out changeset 9a5b898000b5
|
2012-02-22 14:03:14 +01:00 |
Nathan Froyd
|
b2969d9963
|
Bug 717061 - fix uncompressed->gzip conversion in nsDeflateConverter; r=mossop
|
2012-01-25 18:27:48 -08:00 |
Panagiotis Koutsourakis
|
9c7dfb9706
|
Bug 702388 - Convert Makefiles to use |TEST_DIRS += foo| r=khuey
Files named Makefile.in containing the expression
DIRS += <foo>
or
DIRS = <foo>
inside the conditional expression
ifdef ENABLE_TESTS
...
endif
are changed to
TEST_DIRS += tests
outside any conditional expression.
The files
./layout/Makefile.in
./layout/Makefile.in
./layout/style/Makefile.in
./rdf/Makefile.in
./security/manager/Makefile.in
./content/Makefile.in
./content/smil/Makefile.in
./content/xul/templates/Makefile.in
./content/xul/content/Makefile.in
./content/base/Makefile.in
./content/media/Makefile.in
./parser/htmlparser/Makefile.in
./dom/sms/Makefile.in
./js/jsd/Makefile.in
./js/xpconnect/Makefile.in
./widget/Makefile.in
./widget/windows/Makefile.in
./Makefile.in
./startupcache/Makefile.in
./storage/Makefile.in
./gfx/Makefile.in
./intl/strres/Makefile.in
./intl/uconv/Makefile.in
./intl/unicharutil/Makefile.in
./intl/lwbrk/Makefile.in
./embedding/Makefile.in
./modules/libjar/Makefile.in
./modules/libpref/Makefile.in
./build/Makefile.in
./build/win32/Makefile.in
./xpcom/Makefile.in
./extensions/spellcheck/hunspell/Makefile.in
./extensions/cookie/Makefile.in
./netwerk/Makefile.in
./netwerk/streamconv/Makefile.in
./editor/txmgr/Makefile.in
./toolkit/mozapps/shared/Makefile.in
./toolkit/mozapps/update/Makefile.in
./toolkit/library/Makefile.in
./toolkit/library/Makefile.in
./toolkit/crashreporter/Makefile.in
./toolkit/components/perf/Makefile.in
./toolkit/components/perf/Makefile.in
./toolkit/components/feeds/Makefile.in
./toolkit/components/url-classifier/Makefile.in
contain the string
ifdef ENABLE_TESTS
but have some other statement inside (e.g. TOOL_DIRS += <foo> etc) and
they remain unchanged by this patch.
|
2012-02-04 17:32:24 +00:00 |
Nicholas Nethercote
|
5c2594c72d
|
Bug 715770 (part 2) - Don't use nsRecyclingAllocator in libjar. r=taras.
--HG--
extra : rebase_source : 92f39e2d1d62d500e0cdf728b3c95070143015e1
|
2012-01-11 15:20:56 -08:00 |
Jeff Walden
|
62f48d8793
|
Bug 711647 - Add MOZ_DELETE to a bunch of deliberately-not-implemented methods across the tree. r=dbaron
--HG--
extra : rebase_source : 507006c0f099da6851b585d2062267d285978ad7
|
2011-12-16 14:42:07 -05:00 |
Mike Hommey
|
511d9f638c
|
Bug 695843 part 5 - Add a FileLocation class to either store a pair (zip, path) or a file, and do some operations on these. r=bsmedberg,mwu
|
2011-12-08 11:03:36 +01:00 |
Mike Hommey
|
b83b7a72c9
|
Bug 695843 part 4 - Allow nsZipCursor to always use the given buffer. r=tglek
|
2011-12-08 11:03:36 +01:00 |
Mike Hommey
|
cd155f464b
|
Bug 695843 part 1 - Add Refcounting on nsZipArchives. r=mwu
|
2011-12-08 11:03:36 +01:00 |
Ed Morley
|
7ea8e12caa
|
Backout 4997c6f8b24d (bug 616542) for causing locally run mochitest-browser-chrome test runs to fail
|
2011-11-05 18:35:59 +00:00 |
Rail Aliiev
|
ac65d0d88e
|
Bug 616542 - Shorten file path length of mochitest; r=ted
|
2011-11-04 21:13:42 +00:00 |
Wolfgang Germund
|
d87b3fa468
|
Bug 697061: better string handling in nsJAR.cpp. r=tglek
|
2011-10-28 15:43:01 +02:00 |
Kris Maglione
|
dc516e92fb
|
Bug 684347: nsZipWriter::addEntryChannel(queue=true) creates corrupt zip file. r=mossop
|
2011-10-25 17:30:59 -07:00 |
Nicholas Nethercote
|
0ee9052aba
|
Bug 696690 - Memory reporter for the startup cache. r=tglek.
|
2011-10-24 17:50:47 -07:00 |
Ehsan Akhgari
|
92064e6d3f
|
Bug 690892 - Replace PR_TRUE/PR_FALSE with true/false on mozilla-central; rs=dbaron
Landing on a CLOSED TREE
|
2011-10-17 10:59:28 -04:00 |
Michael Wu
|
d2b70213ac
|
Bug 675553 - Switch from PRBool to bool on a CLOSED TREE , r=bsmedberg,khuey,bz,cjones
--HG--
rename : tools/trace-malloc/bloatblame.c => tools/trace-malloc/bloatblame.cpp
|
2011-09-28 23:19:26 -07:00 |
Wolfgang Germund
|
80c37cdd5a
|
Bug 296795: ZipReader doesn't handle non-ASCII characters r=taras
|
2011-09-28 16:14:45 -07:00 |
Randell Jesup
|
2cff549103
|
Bug 682845: Update IIDs, fix serializations of nsStandardURL broken by bug 665706 r/sr=bz
|
2011-09-10 05:27:29 -04:00 |
Nick Hurley
|
924d548d31
|
bug 589292 - add contentDisposition{Filename} props to nsIChannel. r=honzab sr=bzbarsky
|
2011-09-09 15:41:04 -07:00 |
Ehsan Akhgari
|
624cdf4412
|
Revert to 176fae7de173 which was fine.
Sorry for breaking the history, won't trust TBPL, ever again. :(
|
2011-09-02 09:15:54 -04:00 |
Ehsan Akhgari
|
44916171a8
|
Revert to changeset e6fc4594c22e which was the last one to get a green Win7 tp run
|
2011-09-02 09:03:08 -04:00 |
Atul Aggarwal
|
fe3055dcbc
|
Bug 666677: Fix build warning about unhandled case in nsDeflateConverter.cpp switch statement. r=Mossop
|
2011-09-01 15:21:44 -07:00 |