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 |
|
Aryeh Gregor
|
0923bf00ef
|
Bug 780618 - Move all error codes to nsError.h; r=ehsan
|
2012-07-27 17:03:27 +03:00 |
|
David Zbarsky
|
b462ec011a
|
Bug 773842 - Fix build warnings under content/ r=mounir
|
2012-08-10 14:01:16 -04:00 |
|
Ms2ger
|
3f950b5744
|
Bug 780387 - Part b: Stop using PRIntn; r=bsmedberg
|
2012-08-09 09:09:40 +02:00 |
|
David Zbarsky
|
d50e4a7565
|
[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
|
6173fa297f
|
Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted
|
2012-08-04 20:26:44 +02:00 |
|
Ted Shroyer
|
b97e71e237
|
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
|
e806eeab4f
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Henri Sivonen
|
b43c71a1be
|
Bug 775467 - Make readyState progress through all states without duplicate transitions. r=bzbarsky.
|
2012-07-27 16:35:09 +03:00 |
|
William Chen
|
7588edffd9
|
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
|
68ce0e34aa
|
Bug 774585: Rename getCodebasePrincipal to getSimpleCodebasePrincipal since the behavior has semantically changed. r=mounir
|
2012-07-21 00:29:40 -07:00 |
|
Mounir Lamouri
|
96545b3886
|
Bug 327244 (2/2) - Remove nsIScriptSecurityManager::CheckLoadURI(). r=sicking,jlebar
|
2012-07-18 15:27:02 -07:00 |
|
Ed Morley
|
80af77da9d
|
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
|
8a2133a405
|
Bug 327244 (2/2) - Remove nsIScriptSecurityManager::CheckLoadURI(). r=sicking,jlebar
|
2012-07-18 15:27:02 -07:00 |
|
Nathan Froyd
|
a7eb97f896
|
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
|
ae718ee1c0
|
Bug 763350 - Clean up some includes in content/ and dom/ r=smaug
|
2012-07-01 16:45:59 -07:00 |
|
Ehsan Akhgari
|
7a041e9a4b
|
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
|
ca171eec44
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Benjamin Smedberg
|
4f91700da9
|
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
|
cddee1288b
|
Bug 749883 - Remove unused txDOM.h; r=sicking
|
2012-05-05 11:00:06 +02:00 |
|
John Schoenick
|
75f87f2d21
|
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
|
6f413751fd
|
Bug 751416 - Remove unused txList[Iterator] methods. r=sicking
|
2012-05-03 18:33:51 -04:00 |
|
Patrick Wong
|
30fd6e9e6a
|
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
|
c6c8e61892
|
Bug 744366 - Assert about old readyState before readyState transitions. r=bzbarsky.
|
2012-04-17 09:41:49 +03:00 |
|
Jeff Walden
|
18b2aec6c5
|
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
|
1a44f1208f
|
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
|
85b9728d6c
|
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
|
aef37dab12
|
Bug 641821, MutationObserver, r=sicking
--HG--
extra : rebase_source : a680c883b22976edf38eea23fb516215e081084f
|
2012-03-31 09:30:13 -07:00 |
|
Marco Bonardo
|
31496b4a78
|
Merge central to inbound
|
2012-03-30 12:27:55 +02:00 |
|
Ms2ger
|
968425f97e
|
Bug 738654 - Part b: RemoveChildAt can't fail; r=sicking
|
2012-03-29 23:09:07 +02:00 |
|
Matias Juntunen
|
ad1912fafd
|
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
|
0abdfa04b8
|
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
|
c3096d813b
|
Bug 737976: Remove nsINodeInfo. rs=bent
|
2012-03-28 19:07:37 -07:00 |
|
Henri Sivonen
|
0b5228046a
|
Bug 738572 - #include nsIHTMLContentSink.h in fewer places. r=bzbarsky.
|
2012-03-23 17:21:44 +02:00 |
|
Henri Sivonen
|
f2d3f89eb7
|
Bug 737417 part 1 - Split charset source constants out of nsIParser.h. r=smaug.
|
2012-03-22 16:42:42 +02:00 |
|
Nicholas Nethercote
|
c4ee2f9bdc
|
Backed out changeset 0124795a8cbb (bug 711895) due to i10n build bustage. r=me.
|
2012-03-21 21:46:27 -07:00 |
|
Nicholas Nethercote
|
5524d35c04
|
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
|
70cbaa6b9e
|
Bug 732167 - Eliminate duplicate headers in content. r=mounir
|
2012-03-06 13:55:37 -05:00 |
|
Charles Chan
|
64daff1dae
|
Bug 729049 - Inline IsXMLLetter, IsXMLNCNameChar, DecodeEntity from nsIParserService. r=hsivonen
|
2012-03-14 21:56:58 -07:00 |
|
Justin Lebar
|
0dbaf73150
|
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
|
04b172bf20
|
merge m-c tip over to m-i
|
2012-03-11 15:40:05 -07:00 |
|
Ms2ger
|
582d853ee8
|
Bug 705432 - Remove dead code: txResultRecycler::getNodeSet(const txXPathNode&, txNodeSet**); r=peterv
|
2012-03-11 09:43:22 +01:00 |
|
Emanuel Hoogeveen
|
5dbd39a604
|
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
|
ad1e586c68
|
Bug 730825 - Part 1: change content/ to use nsTHashtable instead of nsDoubleHashtable; r=sicking
|
2012-02-29 11:28:01 -05:00 |
|
Ed Morley
|
d27ab2302c
|
Backout afeafc02c1de, dfae37833c9b & f9f51c726fa7 (bug 729940 parts 1-3) for talos regressions
|
2012-03-05 15:22:28 +00:00 |
|
Makoto Kato
|
2c1e47f122
|
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
|
e1a9198917
|
Bug 729940 - Part 3: Stop using crappy hash functions in Gecko. r=bz
|
2012-03-04 15:58:06 -05:00 |
|
Justin Lebar
|
8f94cc1764
|
Back out bug 729940 (a108aee:d75775d) due to 32-bit red.
|
2012-03-04 14:20:34 -05:00 |
|
Justin Lebar
|
169d0f30f5
|
Bug 729940 - Part 3: Stop using crappy hash functions in Gecko. r=bz
|
2012-03-04 13:49:42 -05:00 |
|
Matthew Schranz
|
7e8fb26c1e
|
Bug 698381 - Make Node.cloneNode aDeep argument optional, default to true. r=smaug
|
2012-02-23 14:23:30 +01:00 |
|