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 |
|
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 |
|
David Zbarsky
|
05903e83e6
|
Bug 773842 - Fix build warnings under content/ r=mounir
|
2012-08-10 14:01:16 -04:00 |
|
Ms2ger
|
75ab7efb95
|
Bug 780387 - Part b: Stop using PRIntn; r=bsmedberg
|
2012-08-09 09:09:40 +02:00 |
|
David Zbarsky
|
03039446fa
|
[Bug 780428] Don't include nsIFrame.h in places where it's not necessary r=roc
|
2012-08-05 23:00:56 -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 |
|
Ted Shroyer
|
3d7f99baf9
|
Bug 765890 - Alter mochitests/jsreftests to pass when javascript.options.xml.content defaults to false. r=jorendorff.
--HG--
extra : rebase_source : 12bd1c7b597c4834424876ac797cf7c118434d5e
|
2012-07-20 14:00:53 -05:00 |
|
Aryeh Gregor
|
d0ad5a7d0c
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Henri Sivonen
|
d5ae090db7
|
Bug 775467 - Make readyState progress through all states without duplicate transitions. r=bzbarsky.
|
2012-07-27 16:35:09 +03:00 |
|
William Chen
|
64477c69e0
|
Bug 746855 - Be more careful when checking for a carry during number format evaluation. r=sicking
|
2012-06-11 13:31:35 -04:00 |
|
Jonas Sicking
|
23c9838514
|
Bug 774585: Rename getCodebasePrincipal to getSimpleCodebasePrincipal since the behavior has semantically changed. r=mounir
|
2012-07-21 00:29:40 -07:00 |
|
Mounir Lamouri
|
61d9d40b3d
|
Bug 327244 (2/2) - Remove nsIScriptSecurityManager::CheckLoadURI(). r=sicking,jlebar
|
2012-07-18 15:27:02 -07:00 |
|
Ed Morley
|
c2d155cb67
|
Backout ea6db8f420c0 (bug 770831), b51c79ee0883 (bug 774957), 020f6ed5958b (bug 758258), 11d8e19e1fca (bug 758258), 707fc51bfe2e (bug 775354), 489d944a6fe6 (bug 327244), be7df3c9d50f (bug 327244) for m-oth orange
|
2012-07-19 08:29:48 +01:00 |
|
Mounir Lamouri
|
f293eab524
|
Bug 327244 (2/2) - Remove nsIScriptSecurityManager::CheckLoadURI(). r=sicking,jlebar
|
2012-07-18 15:27:02 -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 |
|
David Zbarsky
|
d2ee12f6f9
|
Bug 763350 - Clean up some includes in content/ and dom/ r=smaug
|
2012-07-01 16:45:59 -07:00 |
|
Ehsan Akhgari
|
2050b687cc
|
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 (content parts); r=bzbarsky
--HG--
extra : rebase_source : e25a064995914ca4f7b1db16b5725eb440d3e531
|
2012-06-18 22:30:09 -04: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 |
|
Ms2ger
|
9d81d1a49c
|
Bug 749883 - Remove unused txDOM.h; r=sicking
|
2012-05-05 11:00:06 +02:00 |
|
John Schoenick
|
74f0bb2104
|
Bug 748365 - xpath: Don't progress past end in nextToken, remove pushBack() logic. r=sicking
|
2012-04-26 14:46:44 -07:00 |
|
Ehren Metcalfe
|
9d5dfbd1ce
|
Bug 751416 - Remove unused txList[Iterator] methods. r=sicking
|
2012-05-03 18:33:51 -04:00 |
|
Patrick Wong
|
4ccd1d2fbb
|
Bug 745659 - Removed the nsPrintfCString constructor which takes a length and all corresponding instances that call that particular constructor. This is accomplished by removing the length component from the instantiation. r=jlebar
|
2012-04-24 14:43:00 -04:00 |
|
Henri Sivonen
|
f809f0bb17
|
Bug 744366 - Assert about old readyState before readyState transitions. r=bzbarsky.
|
2012-04-17 09:41:49 +03:00 |
|
Jeff Walden
|
e868abd4e1
|
Bug 714260 - Implement FloatingPoint.h to consolidate all IEEE-754 floating point operations in a single location. r=dmandelin for the js bits, r=Ms2ger for mfbt and the core bits
|
2012-01-23 03:43:16 -08:00 |
|
Mark Capella
|
bb0cb90d39
|
Bug 740688 - Use uintptr_t instead of PRUword, and intptr_t instead of PRWord. r=jwalden
--HG--
extra : rebase_source : 648a581323d2c2893df780f71fe34dadcc4bbaab
|
2012-04-11 17:17:44 -07:00 |
|
Nicholas Nethercote
|
6ca9f23930
|
Bug 711895 - Tweak the warning options used for GCC builds (3rd attempt). r=waldo,derf,khuey,mhommey.
--HG--
extra : rebase_source : 20540c9b838ee3be6cb0847c1b90fdc3bd44059d
|
2012-03-21 22:21:16 -07:00 |
|
Olli Pettay
|
c7a649ab35
|
Bug 641821, MutationObserver, r=sicking
--HG--
extra : rebase_source : a680c883b22976edf38eea23fb516215e081084f
|
2012-03-31 09:30:13 -07:00 |
|
Marco Bonardo
|
932988efc9
|
Merge central to inbound
|
2012-03-30 12:27:55 +02:00 |
|
Ms2ger
|
2754f9e3ff
|
Bug 738654 - Part b: RemoveChildAt can't fail; r=sicking
|
2012-03-29 23:09:07 +02:00 |
|
Matias Juntunen
|
368977644f
|
Bug 729048 - Part 4: Replace calls to nsParserService::CheckQName with nsContentUtils::CheckQName in txXMLUtils.h. r=hsivonen
|
2012-03-29 17:31:40 -04:00 |
|
Phil Ringnalda
|
16b8634b73
|
Back out b00bf7f3869c (bug 737976) for apparently causing mochitest-1 leaks on a CLOSED TREE
|
2012-03-28 22:43:09 -07:00 |
|
Kyle Huey
|
33073664dc
|
Bug 737976: Remove nsINodeInfo. rs=bent
|
2012-03-28 19:07:37 -07:00 |
|
Henri Sivonen
|
88c3e0947f
|
Bug 738572 - #include nsIHTMLContentSink.h in fewer places. r=bzbarsky.
|
2012-03-23 17:21:44 +02:00 |
|
Henri Sivonen
|
31192f4b01
|
Bug 737417 part 1 - Split charset source constants out of nsIParser.h. r=smaug.
|
2012-03-22 16:42:42 +02:00 |
|
Nicholas Nethercote
|
7ac3a573ad
|
Backed out changeset 0124795a8cbb (bug 711895) due to i10n build bustage. r=me.
|
2012-03-21 21:46:27 -07:00 |
|
Nicholas Nethercote
|
e2181e8fb2
|
Bug 711895 - Tweak the warning options used for GCC builds (2nd attempt). r=waldo,derf,khuey,mhommey,jwatt.
|
2012-03-15 19:40:00 -07:00 |
|
Nathan Froyd
|
70907fb5f2
|
Bug 732167 - Eliminate duplicate headers in content. r=mounir
|
2012-03-06 13:55:37 -05:00 |
|
Charles Chan
|
ea1fb78e92
|
Bug 729049 - Inline IsXMLLetter, IsXMLNCNameChar, DecodeEntity from nsIParserService. r=hsivonen
|
2012-03-14 21:56:58 -07:00 |
|
Justin Lebar
|
1fc1dc1879
|
Bug 729940 - Part 2: Stop using crappy hash functions in Gecko. r=bz
--HG--
extra : rebase_source : 6fa267a89878cc1a766d8618569debcea9b12e48
|
2012-03-12 18:53:18 -04:00 |
|
Daniel Holbert
|
70775ba4c6
|
merge m-c tip over to m-i
|
2012-03-11 15:40:05 -07:00 |
|
Ms2ger
|
c6d59e55a5
|
Bug 705432 - Remove dead code: txResultRecycler::getNodeSet(const txXPathNode&, txNodeSet**); r=peterv
|
2012-03-11 09:43:22 +01:00 |
|
Emanuel Hoogeveen
|
bdce617c30
|
Bug 492931 - Fix case conversion in a bunch of DOM functions to only convert ASCII characters. r=sicking,khuey
|
2012-03-09 21:50:34 -08:00 |
|
Nathan Froyd
|
e6e610c92e
|
Bug 730825 - Part 1: change content/ to use nsTHashtable instead of nsDoubleHashtable; r=sicking
|
2012-02-29 11:28:01 -05:00 |
|
Ed Morley
|
3c657080b5
|
Backout afeafc02c1de, dfae37833c9b & f9f51c726fa7 (bug 729940 parts 1-3) for talos regressions
|
2012-03-05 15:22:28 +00:00 |
|
Makoto Kato
|
b6e9c4d7bb
|
Bug 590390 - deCOM nsICharsetAlias. r=smontagu
--HG--
rename : intl/locale/public/nsICharsetAlias.h => intl/locale/public/nsCharsetAlias.h
rename : intl/locale/src/nsCharsetAliasImp.cpp => intl/locale/src/nsCharsetAlias.cpp
|
2012-03-05 12:57:51 +09:00 |
|
Justin Lebar
|
7e343a6c1d
|
Bug 729940 - Part 3: Stop using crappy hash functions in Gecko. r=bz
|
2012-03-04 15:58:06 -05:00 |
|
Justin Lebar
|
e2b30b7a56
|
Back out bug 729940 (a108aee:d75775d) due to 32-bit red.
|
2012-03-04 14:20:34 -05:00 |
|