Boris Zbarsky
|
9c1973b5d2
|
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
|
66e39d8aff
|
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
|
e5e5a90814
|
Bug 848339 - Remove the vestigial boolean outparam from nsWrapperCache::WrapObject. r=bz
|
2013-03-12 08:03:47 +09:00 |
|
Ben Turner
|
78bb29569f
|
Bug 832419 - 'Clean up IPC blobs'. r=sicking.
|
2013-01-17 12:17:33 -08:00 |
|
Kyle Huey
|
6525389cc0
|
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
|
acba59dcdf
|
Backout 1391e924e9ee (bug 806503) for mochitest-1 failures on a CLOSED TREE
|
2013-01-10 15:21:39 +00:00 |
|
Kyle Huey
|
fb593adfcf
|
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
|
947106a519
|
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
|
afe82ab291
|
Backout 194d8f675d2d & 251a18603db4 (bug 811615) for xpcshell and mochitest failures
|
2012-12-11 13:09:38 +00:00 |
|
Trevor Saunders
|
da73fd4891
|
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
|
9b92167718
|
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
|
b04c552fdc
|
Backed out changeset 8c95cee5cd9e (bug 801466) because of test failures in mochitest-1
|
2012-12-06 01:09:30 -05:00 |
|
Trevor Saunders
|
0edc053528
|
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
|
49503a3335
|
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
|
c7830976fa
|
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
|
f5e5b6d4cc
|
Bug 803684 - Add a memory reporter for in-memory file data. r=khuey,njn
|
2012-10-24 22:06:31 -04:00 |
|
Justin Lebar
|
60788c9e2a
|
Back out 37e8ef1c7353 (bug 803684) due to Windows red.
--HG--
extra : rebase_source : 17a1ad6c967781e46f23c2938633b18c88709910
|
2012-10-24 13:38:35 -04:00 |
|
Justin Lebar
|
a2894d092c
|
Bug 803684 - Add a memory reporter for in-memory file data. r=khuey,njn
|
2012-10-24 12:40:35 -04:00 |
|
Doug Turner
|
6363e34789
|
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
|
05d200bad7
|
Bug 744907 - Remove BlobBuilder; r=sicking
|
2012-09-20 09:55:36 +02:00 |
|
Peter Van der Beken
|
71b55b1f68
|
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
|
0fd9123eac
|
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
|
51792b2d7b
|
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
|
7f1e8a99aa
|
Backed out changeset 46653198caac
|
2012-08-02 21:53:03 -07:00 |
|
Ben Turner
|
56da575b73
|
Bug 778968 - 'Avoid stat-ing remote blobs on the main thread'. r=janv.
|
2012-08-02 13:42:30 -07:00 |
|
Aryeh Gregor
|
e806eeab4f
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Jan Varga
|
6e3e5ab48b
|
Bug 726593 - Implement FileHandle. r=bent
|
2012-06-03 18:33:52 +02:00 |
|
Doug Turner
|
b15cda8253
|
Bug 717103 - Implement Device Storage. r=sicking
|
2012-05-21 09:18:30 -07:00 |
|
Doug Turner
|
8ca2962c15
|
Bug 673586 - Implement lastModifiedDate property for the File interface. r=mounir
|
2012-05-21 15:11:56 -07:00 |
|
Ed Morley
|
9f64d2c1c7
|
Backout 027ed1748c81 (bug 740485) for M3 orange
|
2012-05-21 19:36:43 +01:00 |
|
Doug Turner
|
a1636519c8
|
Bug 740485 - Implement Device Storage. r=sicking
|
2012-05-21 09:18:30 -07:00 |
|
Gervase Markham
|
ca171eec44
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Peter Van der Beken
|
6fd0c1b877
|
Bug 738593 - Rename IsProxy to IsDOMBinding; r=mrbkap
|
2012-03-16 16:44:09 +01:00 |
|
Blake Kaplan
|
7a4eeff601
|
Bug 727884 - Make nsWrapperCache::WrapObject take a JSObject scope instead of XPCWrappedNativeScope. r=peterv
|
2012-03-14 16:25:40 +01:00 |
|
Masatoshi Kimura
|
e441461b51
|
Bug 721569 - Implement Blob constructor. r=sicking
|
2012-03-12 21:44:56 -07:00 |
|
Peter Van der Beken
|
c2e7269a78
|
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
|
6dbbe95646
|
Bug 732769 - Remove FileError; r=sicking
|
2012-03-11 09:47:38 +01:00 |
|
Justin Lebar
|
b682bbe4a5
|
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
|
236b6c12a8
|
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
|
51e15f5815
|
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
|
5b8cc97c76
|
Bug 715185: Remove using namespace declaration from nsDOMFile.h. r=mounir
|
2012-01-05 08:44:46 -05:00 |
|
Jan Varga
|
3975331303
|
Bug 711727 - Followup cleanup for files in IndexedDB. r=sicking/bent
|
2011-12-20 12:23:27 +01:00 |
|
Jan Varga
|
8702627c09
|
Bug 661877 - Enable storing files in IndexedDB. r=bent
|
2011-12-16 08:34:24 +01:00 |
|
Kyle Huey
|
8c6df8a8e6
|
Fix Bug 700512. r=sicking,bsmedberg
|
2011-11-18 10:19:44 -05:00 |
|
Ms2ger
|
d2ea6246bf
|
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 |
|