Boris Zbarsky
|
f75142b01d
|
Bug 864727 part 5. Make all the WrapObject methods take a handle for the scope object. r=ms2ger
|
2013-04-25 12:29:54 -04:00 |
|
Joshua Cranmer
|
ce365a42ff
|
Bug 856108 - Port static analyses to clang, part 2a: use MOZ_STACK_CLASS in content. r=bz
|
2013-04-11 22:20:09 -05:00 |
|
Masatoshi Kimura
|
7693df618d
|
Bug 848339 - Remove the vestigial boolean outparam from nsWrapperCache::WrapObject. r=bz
|
2013-03-12 08:03:47 +09:00 |
|
Ben Turner
|
72bdb2945a
|
Bug 832419 - 'Clean up IPC blobs'. r=sicking.
|
2013-01-17 12:17:33 -08:00 |
|
Kyle Huey
|
094d5d52f1
|
Bug 806503: Eagerly transmit blob data across processes so that it is available if the originating process dies. r=bent a=bb+
|
2013-01-10 05:47:32 -08:00 |
|
Ed Morley
|
9fce0eda54
|
Backout 1391e924e9ee (bug 806503) for mochitest-1 failures on a CLOSED TREE
|
2013-01-10 15:21:39 +00:00 |
|
Kyle Huey
|
98ecfda689
|
Bug 806503: Eagerly transmit blob data across processes so that it is available if the originating process dies. r=bent a=bb+
|
2013-01-10 05:47:32 -08:00 |
|
Kyle Huey
|
bc4bf082d3
|
Bug 811615: Enable chrome code to create a new File object by wrapping an existing Blob and provide a custom name/type. r=sicking a=basecamp-blocking
|
2012-12-11 13:21:03 -08:00 |
|
Ed Morley
|
a8fb464cea
|
Backout 194d8f675d2d & 251a18603db4 (bug 811615) for xpcshell and mochitest failures
|
2012-12-11 13:09:38 +00:00 |
|
Trevor Saunders
|
24945243b2
|
bug 801466 - part 3.2 remove some usage of prmem in content/ r=mounir, khuey
|
2012-12-05 17:20:57 -05:00 |
|
Kyle Huey
|
10448fbbb9
|
Bug 811615: Enable chrome code to create a new File object by wrapping an existing Blob and provide a custom name/type. r=sicking a=basecamp-blocking
|
2012-12-11 03:54:08 -08:00 |
|
Ehsan Akhgari
|
a93e91b0a2
|
Backed out changeset 8c95cee5cd9e (bug 801466) because of test failures in mochitest-1
|
2012-12-06 01:09:30 -05:00 |
|
Trevor Saunders
|
2a23ce3be4
|
bug 801466 - part 3.2 remove some usage of prmem in content/ r=mounir, khuey
|
2012-12-05 17:20:57 -05:00 |
|
Michal Novotny
|
d5f530148f
|
Bug 725993 - Remove usage of STORE_ON_DISK flag in XHR code, r=jonas
|
2012-11-27 12:48:15 +01:00 |
|
Philipp von Weitershausen
|
e1bfa6aa62
|
Bug 809727 - Wait for the write transaction to finish so that the blobs are expired. r=janv
|
2012-11-09 20:32:10 -05:00 |
|
Justin Lebar
|
3acf01ecb1
|
Bug 803684 - Add a memory reporter for in-memory file data. r=khuey,njn
|
2012-10-24 22:06:31 -04:00 |
|
Justin Lebar
|
b73791971c
|
Back out 37e8ef1c7353 (bug 803684) due to Windows red.
--HG--
extra : rebase_source : 17a1ad6c967781e46f23c2938633b18c88709910
|
2012-10-24 13:38:35 -04:00 |
|
Justin Lebar
|
81ba0ba3ab
|
Bug 803684 - Add a memory reporter for in-memory file data. r=khuey,njn
|
2012-10-24 12:40:35 -04:00 |
|
Doug Turner
|
4a040cfbad
|
Bug 793955, 802867 - DeviceStorage files returned by DeviceStorage.get() don't always have lastModifiedDate. r=bent. a=blocking-basecamp
|
2012-10-18 11:29:32 -07:00 |
|
Ms2ger
|
7fec2d16ba
|
Bug 744907 - Remove BlobBuilder; r=sicking
|
2012-09-20 09:55:36 +02:00 |
|
Peter Van der Beken
|
d21c8a19b6
|
Fix for bug 788532 (Add the new DOM bindings API to DOM lists). r=bz.
--HG--
extra : rebase_source : 18e21a786b6a9cc2aeada52ba5ca3a2614cb596b
|
2012-09-05 22:49:53 +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 |
|
Ben Turner
|
98a57bfb9c
|
Bug 778968 - 'Avoid stat-ing remote blobs on the main thread'. r=janv.
--HG--
extra : transplant_source : %90%87%047%07BA%97%E0%F1n%1DY%08D%7C%E39%20%0F
|
2012-08-02 23:25:30 -07:00 |
|
Ben Turner
|
f8dee3f4cb
|
Backed out changeset 46653198caac
|
2012-08-02 21:53:03 -07:00 |
|
Ben Turner
|
b77c1c5db1
|
Bug 778968 - 'Avoid stat-ing remote blobs on the main thread'. r=janv.
|
2012-08-02 13:42:30 -07:00 |
|
Aryeh Gregor
|
57c0ad57fb
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Jan Varga
|
f5f6531fb7
|
Bug 726593 - Implement FileHandle. r=bent
|
2012-06-03 18:33:52 +02:00 |
|
Doug Turner
|
f4e1e809f4
|
Bug 717103 - Implement Device Storage. r=sicking
|
2012-05-21 09:18:30 -07:00 |
|
Doug Turner
|
52a3ef54a0
|
Bug 673586 - Implement lastModifiedDate property for the File interface. r=mounir
|
2012-05-21 15:11:56 -07:00 |
|
Ed Morley
|
7bdae23f76
|
Backout 027ed1748c81 (bug 740485) for M3 orange
|
2012-05-21 19:36:43 +01:00 |
|
Doug Turner
|
23116ffc7c
|
Bug 740485 - Implement Device Storage. r=sicking
|
2012-05-21 09:18:30 -07:00 |
|
Gervase Markham
|
87620f5676
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Peter Van der Beken
|
4c5904d14e
|
Bug 738593 - Rename IsProxy to IsDOMBinding; r=mrbkap
|
2012-03-16 16:44:09 +01:00 |
|
Blake Kaplan
|
2c581e8da4
|
Bug 727884 - Make nsWrapperCache::WrapObject take a JSObject scope instead of XPCWrappedNativeScope. r=peterv
|
2012-03-14 16:25:40 +01:00 |
|
Masatoshi Kimura
|
d1e291fd89
|
Bug 721569 - Implement Blob constructor. r=sicking
|
2012-03-12 21:44:56 -07:00 |
|
Peter Van der Beken
|
c58bd05f01
|
Fix for bug 734505 (Add new DOM binding for FileList). r=jst.
--HG--
extra : rebase_source : 7a563b1af70c24f9117b813016b7a37612e92431
|
2011-08-22 11:14:13 +02:00 |
|
Ms2ger
|
5ebe629da9
|
Bug 732769 - Remove FileError; r=sicking
|
2012-03-11 09:47:38 +01:00 |
|
Justin Lebar
|
62dbeeb1ab
|
Bug 731789 - Rename mfbt/StdInt.h to mfbt/StandardInteger.h, so stdint types work from cpp files inside mfbt. r=waldo
|
2012-02-29 22:56:43 -05:00 |
|
Ms2ger
|
f721014338
|
Bug 699731 - Remove PR_INT64_MAX / PR_UINT64_MAX from non-nsprpub source; r=ted
|
2012-01-11 09:23:07 +01:00 |
|
Michael Kohler
|
bf6a5aaae5
|
Bug 711818 - MOZILLA_GUARD_OBJECT_NOTIFIER* should use a MOZ_ prefix to follow MFBT style
|
2012-01-10 00:29:30 -05:00 |
|
Kyle Huey
|
d7fda3b961
|
Bug 715185: Remove using namespace declaration from nsDOMFile.h. r=mounir
|
2012-01-05 08:44:46 -05:00 |
|
Jan Varga
|
3253a69c4f
|
Bug 711727 - Followup cleanup for files in IndexedDB. r=sicking/bent
|
2011-12-20 12:23:27 +01:00 |
|
Jan Varga
|
152a98864a
|
Bug 661877 - Enable storing files in IndexedDB. r=bent
|
2011-12-16 08:34:24 +01:00 |
|
Kyle Huey
|
12171860ba
|
Fix Bug 700512. r=sicking,bsmedberg
|
2011-11-18 10:19:44 -05:00 |
|
Ms2ger
|
6622e2e115
|
Bug 672796 - Move MOZILLA_GUARD_OBJECT_NOTIFIER_* out of AutoRestore.h; r=khuey
|
2011-11-16 08:50:19 +01:00 |
|
Ehsan Akhgari
|
2a602a5685
|
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
|
d8e503c38b
|
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 |
|
Kyle Huey
|
6b82f92f13
|
Bug 664254: Make DOM File objects implement nsIMutable so they can be immutabilized for sharing across threads. r=sicking
|
2011-07-19 09:27:46 -07:00 |
|
Jonas Sicking
|
eb9ce9a027
|
Bug 669433 Part 1: Clean up File implementations by creating a storage-agnostic base class, nsDOMFileBase. r=khuey
|
2011-07-11 19:41:29 -07:00 |
|
Masatoshi Kimura
|
938ba969e8
|
Bug 661583: Hold onto the cache token if our response blob is backed by a cache file. r=sicking
|
2011-06-30 14:41:39 -07:00 |
|