Christoph Kerschbaumer
|
0e075876c3
|
Bug 1048048 - add preload content policy types for images (r=seth)
|
2015-09-20 14:55:59 -07:00 |
|
Wes Kocher
|
7e27875d2c
|
Backed out 7 changesets (bug 1048048) for android crashes in various chunks CLOSED TREE
Backed out changeset b5abe23a4ea5 (bug 1048048)
Backed out changeset 4f91b10e8be0 (bug 1048048)
Backed out changeset 450d4a13c90e (bug 1048048)
Backed out changeset 6a727c40eb68 (bug 1048048)
Backed out changeset 88c2333ff745 (bug 1048048)
Backed out changeset 740ab1ecd079 (bug 1048048)
Backed out changeset 02c6d6aef163 (bug 1048048)
|
2015-09-21 09:08:34 -07:00 |
|
Christoph Kerschbaumer
|
46f476eda8
|
Bug 1048048 - add preload content policy types for images (r=seth)
|
2015-09-20 14:55:59 -07:00 |
|
Nicholas Nethercote
|
34f31298f1
|
Bug 1182960 (part 2) - Use nsTHashtable::Iterator in toolkit/components/places/. r=mak.
|
2015-07-14 07:06:29 -07:00 |
|
Emanuel Hoogeveen
|
b30abdc582
|
Bug 905127 - Part 1 - Make some functions from nsNetUtil not inline. r=jduell
|
2015-07-07 04:17:00 +02:00 |
|
Mike Hommey
|
338d086ead
|
Bug 1134920 - Use moz_xmalloc/moz_xrealloc/free instead of nsMemory::Alloc/Realloc/Free. r=nfroyd
|
2015-04-01 13:51:45 +09:00 |
|
Christoph Kerschbaumer
|
a4a3d29c9d
|
Bug 1099296 - Attach LoadInfo to remaining callers of ioService and ProtocolHandlers - in toolkit/ (r=mmc,mak)
|
2015-02-17 10:09:50 -08:00 |
|
Nicholas Nethercote
|
663b82ea3b
|
Bug 1050009 - Initialize pldhash tables with a length, not a capacity. r=roc.
* * *
imported patch rm-dummy-params
|
2014-08-06 06:31:21 -07:00 |
|
Bernardo P. Rittmeyer
|
027ec52a91
|
Bug 951396 - Bookmark toolbar now can show icons in HiDPI resolution using a new helper function in PlacesUIUtils.jsm. r=MattN,mak
|
2014-07-31 19:29:57 -07:00 |
|
Birunthan Mohanathas
|
eeb9aaaa94
|
Bug 900908 - Part 3: Change uses of numbered macros in nsIClassInfoImpl.h/nsISupportsImpl.h to the variadic variants. r=froydnj
|
2014-04-27 03:06:00 -04:00 |
|
Birunthan Mohanathas
|
88a0348924
|
Bug 713082 - Part 2: Rename Util.h to ArrayUtils.h. r=Waldo
|
2013-12-08 21:52:54 -05:00 |
|
Birunthan Mohanathas
|
b55ff3bd65
|
Bug 784739 - Switch from NULL to nullptr in toolkit/components/ (1/2); r=ehsan
|
2013-10-10 16:38:05 -04:00 |
|
Robert O'Callahan
|
51222bdd45
|
Bug 910989. Remove nsTHashtable::Init, fallible allocation, and MT hashtables. r=ehsan,bsmedberg
|
2013-09-02 20:41:57 +12:00 |
|
Marco Bonardo
|
e297ca1208
|
Bug 838839 - Remove deprecated synchronous favicons APIs.
r=Mano sr=gavin
|
2013-03-20 14:25:19 +01:00 |
|
Marco Bonardo
|
75631c4899
|
Bug 834457 - Mark the Places APIs we will remove as deprecated.
r=gavin
|
2013-02-14 13:39:20 +01:00 |
|
Ehsan Akhgari
|
5ab06de081
|
Bug 817477 - Remove support for global private browsing mode; r=jdm,glandium
|
2013-01-29 13:12:13 -05:00 |
|
Josh Matthews
|
e77a3bf92a
|
Bug 723005 - Remove all checks for global privacy status in history-related code, and add them to callers when appropriate. r=mak sr=gavin
|
2012-02-18 01:40:10 -05:00 |
|
Isaac Aggrey
|
990e90e88a
|
Bug 791906: Replace NSPR integer limit constants with stdint ones; r=ehsan
|
2012-09-28 01:57:33 -05:00 |
|
Ehsan Akhgari
|
447d052886
|
Bug 741059 - Part 2: Use the nsIChannel::SetPrivate API to set the private bit on the favicon channel loads based on the knowledge of the caller of the favicon loading API; r=mak
|
2012-09-04 20:38:00 -04:00 |
|
Randell Jesup
|
3b4961b603
|
Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg
|
2012-09-01 22:35:17 -04:00 |
|
Ehsan Akhgari
|
243c878d26
|
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 |
|
Honza Bambas
|
473edc0cbf
|
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 |
|
Aryeh Gregor
|
8b4a23fc4c
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Matt Brubeck
|
8caabeedf7
|
Back out b77834cb31ad (bug 580794) because of mochitest-browser-chrome timeouts
|
2012-07-25 16:19:02 -07:00 |
|
David Keeler
|
6de14d03e9
|
bug 580794 - strip userpass from favicon uri (r=filipc,ctalbert)
|
2012-07-24 10:48:42 -07:00 |
|
Gervase Markham
|
cb6a072c2a
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Benjamin Smedberg
|
2b55dddfca
|
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
|
2012-05-18 13:30:49 -04:00 |
|
Marco Bonardo
|
b979029bee
|
Bug 737846 - Ensure favicons service doesn't add unwanted pages to history.
r=dietrich
|
2012-03-27 15:28:14 +02:00 |
|
Tim Abraldes
|
3ba68bbda5
|
bug 704558 - Toolkit changes to work with the newly modified imgTools functions. r=rs
|
2011-12-16 19:43:10 -05:00 |
|
Felix Fung
|
4dd1370256
|
Bug 699843 - Asynchronous Favicons API - ReplaceFaviconDataFromDataURL. r=mak
|
2011-12-15 16:55:53 -08:00 |
|
Felix Fung
|
0101393f58
|
Bug 699843 - Asynchronous Favicons API - ReplaceFaviconData. r=mak
|
2011-12-15 16:55:22 -08:00 |
|
Richard Newman
|
0e81bf35e1
|
Bug 675996 - Part 1: extend moz_favicons with GUID to support Sync. r=mak
|
2011-12-01 13:58:19 -08:00 |
|
Marco Bonardo
|
50a7797537
|
Bug 695554 - Split a Database class out of the History service. (expected fake Ts_shutdown regressions!)
r=dietrich
|
2011-10-27 11:11:34 +02:00 |
|
Ehsan Akhgari
|
478ad1a412
|
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 |
|
Jeff Walden
|
7d613942b0
|
Bug 693469 - Implement mozilla::ArrayLength and mozilla::ArrayEnd, and replace uses of NS_ARRAY_LENGTH whenever possible. (Exceptions: assigning to static initializers, use in static assertions, as template parameters, etc. These will go away when the relevant compilers have C++11 constexpr support.) r=cjones
|
2011-10-10 22:50:08 -07:00 |
|
Jeff Walden
|
c5e5f873d1
|
Back out everything since 5435ee09cf7b. Tinderbox compilers hate me. r=epic-fail
|
2011-10-12 12:21:53 -07:00 |
|
Jeff Walden
|
946f2ae0e3
|
Bug 639469 - Implement mozilla::ArrayLength and mozilla::ArrayEnd, and replace uses of NS_ARRAY_LENGTH whenever possible. r=cjones
|
2011-10-10 22:50:08 -07:00 |
|
Michael Wu
|
0fe7772ece
|
Bug 675553 - Switch from PRBool to bool on a CLOSED TREE , r=bsmedberg,khuey,bz,cjones
|
2011-09-28 23:19:26 -07:00 |
|
Brian R. Bondy
|
426d52b914
|
Bug 676906 - Added async getFaviconDataForPage in mozIAsyncFavicons. r=mak
|
2011-08-31 10:28:17 -04:00 |
|
Richard Newman
|
b98d0a23a2
|
Bug 674238 - Part 0: eliminate unnecessary OR REPLACE INTO from favicon insertion query. r=mak
|
2011-07-27 20:00:39 -07:00 |
|
Marco Bonardo
|
ca5062596c
|
Bug 662806 - nsINavHistoryObserver: pass GUID to onPageChanged.
r=philikon sr=rstrong
|
2011-06-30 22:06:56 +02:00 |
|
Justin Lebar
|
9e093068d5
|
Bug 655270 - push/replaceState should update the favicon. r=mak, sr=gavin
|
2011-05-20 08:37:02 -04:00 |
|
Mitchell Field
|
8969bddd5d
|
Bug 595513 - Reduce makefile recursion in toolkit. r=khuey
|
2011-03-08 14:58:46 +11:00 |
|