Nathan Froyd
|
b995466f21
|
Bug 1320752 - remove mozilla/Function.h; r=gerald
We have std::function available now, which is likely to be somewhat more
efficient.
|
2016-11-28 11:03:53 -05:00 |
|
Andreas Farre
|
a1bf32bb0a
|
Bug 1198381 - Extract nsITimeoutHandler from nsIScriptTimeoutHandler. r=smaug
MozReview-Commit-ID: HJHrbodWYVf
|
2016-10-05 14:26:08 +02:00 |
|
Andreas Farre
|
95c440b772
|
Bug 1198381 - Move/rename nsTimeout to Timeout, r=smaug
MozReview-Commit-ID: 1WrH2ZbOuzj
|
2016-08-22 14:52:19 +02:00 |
|
Carsten "Tomcat" Book
|
be05d6bf8b
|
Backed out changeset 228cc133fe6b (bug 1198381) for causing increased number of hangs in navigate() in marionette tests
|
2016-10-25 12:34:22 +02:00 |
|
Carsten "Tomcat" Book
|
48b41a87ad
|
Backed out changeset 24839edcf0ef (bug 1198381)
|
2016-10-25 12:33:00 +02:00 |
|
Andreas Farre
|
e8a146b724
|
Bug 1198381 - Extract nsITimeoutHandler from nsIScriptTimeoutHandler. r=smaug
MozReview-Commit-ID: HJHrbodWYVf
|
2016-10-05 14:26:08 +02:00 |
|
Andreas Farre
|
f291dc880c
|
Bug 1198381 - Move/rename nsTimeout to Timeout, r=smaug
MozReview-Commit-ID: 1WrH2ZbOuzj
|
2016-08-22 14:52:19 +02:00 |
|
Andrea Marchesini
|
51a746281b
|
Bug 1297472 - Improve nsIScriptTimeoutHandler::GetHandlerText(), r=bz
|
2016-09-05 21:25:13 +02:00 |
|
Andrea Marchesini
|
8219258940
|
Bug 1288770 - Switch worker timeouts to using nsJSTimeoutHandler, r=smaug
|
2016-08-16 08:10:30 +02:00 |
|
Sebastian Hengst
|
31d3ea3143
|
Backed out changeset 2d5975fd02bd (bug 1288770) for asserting in ErrorResult.h when test test_errorPropagation.html runs. r=backout
|
2016-08-16 17:11:22 +02:00 |
|
Andrea Marchesini
|
1a1510ed53
|
Bug 1288770 - Switch worker timeouts to using nsJSTimeoutHandler, r=smaug
|
2016-08-16 08:10:30 +02:00 |
|
Nicholas Nethercote
|
59f57fd0bb
|
Bug 1200484 (part 12) - Use JS column numbers in nsJSTimeoutHandler. r=peterv.
|
2015-09-03 16:03:19 -07:00 |
|
Andrew McCreight
|
92010d3e4c
|
Bug 1152551, part 2 - Fix mode lines in dom/. r=jst
|
2015-05-03 15:32:37 -04:00 |
|
Ehsan Akhgari
|
68bfe70f09
|
Bug 927728 - Part 1: Replace PRUnichar with char16_t; r=roc
This patch was automatically generated by the following script:
#!/bin/bash
# Command to convert PRUnichar to char16_t
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*modules/libmar*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name prtypes.h \
! -name Char16.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 PRUnichar char16_t
|
2014-01-04 10:02:17 -05:00 |
|
Nicholas Nethercote
|
d0f640378a
|
Bug 911020 - Introduce js/TypeDecls.h, which holds very commonly used type declarations from the JS engine. r=luke.
|
2013-08-27 19:59:14 -07:00 |
|
Boris Zbarsky
|
f194838a28
|
Bug 810644 part 1. Switch setTimeout and setInterval to using WebIDL callback functions. r=smaug, sr=peterv
|
2013-01-03 14:02:36 -05:00 |
|
Boris Zbarsky
|
33644a7110
|
Back out bug 810644 for now to fix bug 827035, until we manage to fix bug 765780. r=stuff-is-broken
|
2013-01-07 10:29:00 -05:00 |
|
Boris Zbarsky
|
14bec63e7d
|
Bug 810644 part 1. Switch setTimeout and setInterval to using WebIDL callback functions. r=smaug, sr=peterv
|
2013-01-03 14:02:36 -05: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 |
|
Aryeh Gregor
|
8b4a23fc4c
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Gervase Markham
|
cb6a072c2a
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Mark Capella
|
fb3c0da583
|
Bug 738380 - Remove nsINode::{GetScriptTypeID, SetScriptTypeID}, nsIScriptContext::GetScriptTypeID, nsIScriptRuntime::GetScriptTypeID; r=jst
|
2012-04-01 14:47:48 +02:00 |
|
Ms2ger
|
8e89d9f06f
|
Bug 738761 - Remove nsIScriptTimeoutHandler::GetScriptVersion and pass JSVersion to nsIScriptContext::EvaluateString; r=jst
|
2012-03-29 23:09:13 +02:00 |
|
Saint Wesonga
|
eccbb75824
|
Bug 394769. Remove the additional lateness argument for timeouts and intervals. r=jst
|
2012-02-07 15:28:08 -05:00 |
|
Jignesh Kakadiya
|
7e2e054edc
|
Bug 709493 - Return JSObject* from nsIScriptHandler::GetScriptObject() rather than returning void to remove casting. f=Ms2ger r=bz
|
2011-12-15 21:03:33 +01:00 |
|
Benjamin Smedberg
|
28a78c0c2c
|
Bug 481102 - Reorganize dom/public, dom/public/base, and dom/src/base to dom/base, r+sr=jst
|
2009-03-11 10:10:19 -04:00 |
|