Commit Graph

141 Commits

Author SHA1 Message Date
Vicamo Yang
e2e293c0af Bug 736706 - Part 5: test cases, r=philikon 2012-09-26 14:56:35 +08:00
Andrea Marchesini
51ea7a36ad Bug 792471 - Fix crash in navigator.mozSms when child process doesn't have 'sms' permission. r=mounir 2012-09-25 14:46:41 +01:00
Mike Habicher
4f1885c23e Bug 776934 - Add permissions check to camera API. r=jlebar 2012-09-21 06:32:18 -04:00
Ms2ger
3b4f8a982f Bug 792343 - Enable FAIL_ON_WARNINGS in some more of dom/ (third batch); r=mounir 2012-09-20 09:55:36 +02:00
Nathan Froyd
9b227bf10d Bug 786703 - fix dom/ build failures from introducing PARALLEL_DIRS; r=glandium 2012-09-11 07:47:42 -04:00
Vicamo Yang
d507da6afc Bug 787370 - Part 3/3: test script, r=marshall_law 2012-09-10 13:56:08 +08:00
Kyle Huey
0baaffe99f Bug 687332: Part 2 - Move event handlers off of DOM objects and keep track of them solely in the event listener manager. r=smaug,bz 2012-08-30 20:45:16 -07:00
Nathan Froyd
4c779437cc Bug 783357 - part 1: add XPIDL_FLAGS to make idl dependencies more explicit; r=khuey 2012-08-24 16:01:30 -04:00
Luke Wagner
ce71e55555 Bug 625199 - s/JSAutoEnterCompartment/JSAutoCompartment/ and make it infallible (r=bholley)
--HG--
extra : rebase_source : 12acf2288285f5caefd7fecea8207de3a47eab5b
2012-08-21 18:42:53 -07:00
Ehsan Akhgari
da56516b3c Bug 579517 follow-up: Remove NSPR types that crept in 2012-08-23 11:30:56 -04:00
Vicamo Yang
26ae05bb6d Bug 707659 - Part 2: fix test scripts, r=philikon 2012-08-23 01:30:40 +08:00
Vicamo Yang
be454322bf Bug 707659 - Part 1: DOM implementation, r=jlebar 2012-08-23 01:30:27 +08:00
Ehsan Akhgari
8c296bbcd4 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
Vicamo Yang
1652c368d1 Bug 760199: fix test failure due to SMSC timestamp truncation, r=philikon 2012-08-17 10:01:40 +08:00
Aryeh Gregor
982100775b Bug 780618 - Move all error codes to nsError.h; r=ehsan 2012-07-27 17:03:27 +03:00
Ms2ger
cb4d106015 Bug 716822 - Move attributes and methods on nsIDOMNSEvent to nsIDOMEvent; r=smaug 2012-08-04 09:44:00 +02:00
Mike Hommey
c1b35e7b2a Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted 2012-08-04 20:26:44 +02:00
Ed Morley
4eb11bee72 Revert inbound to 3d5d1daa2505 to stop OS X M5 failures (backout not clean/could have been a bad merge) on a CLOSED TREE 2012-08-04 18:05:15 +01:00
Ms2ger
b927c10310 Bug 716822 - Move attributes and methods on nsIDOMNSEvent to nsIDOMEvent; r=smaug 2012-08-04 09:44:00 +02:00
Aryeh Gregor
57c0ad57fb Bug 777292 part 2 - Change all nsnull to nullptr 2012-07-30 17:20:58 +03:00
Joshua Cranmer
4a5b32fae2 Bug 702877 - Replace NS_OVERRIDE with MOZ_OVERRIDE. r=ehsan
--HG--
extra : rebase_source : 1843575683c3897f96f3966cbce26140ff1a7d90
2012-07-06 13:15:45 -05:00
Nathan Froyd
5b30baa4c3 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
Vicamo Yang
7ccd0ca368 Bug 769347: order database query results by timestamp, r=philikon 2012-07-09 13:06:13 +08:00
Guillermo Lopez
aff3f8f3eb Bug 769803 - WebSMS broken due to IndexedDB API Change. r=khuey 2012-07-02 12:02:38 -07:00
Kyle Huey
d3b6b42885 Bug 726378: Unprefix IndexedDB. r=sicking 2012-06-29 09:48:35 -07:00
Yoshi Huang
42d67581c1 Bug 768367 - B2G RIL: send/received SMS failed on Otoro 2012-06-27 00:04:42 +02:00
Ehsan Akhgari
b66f78936e 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 (more dom parts); r=bzbarsky
--HG--
extra : rebase_source : e31b077d8556626aa46ac33abbe2997e86ba68df
2012-06-18 21:21:14 -04:00
Yoshi Huang
6f3e0ca39e Bug 762760 - Part 2: RIL implementation. r=philikon 2012-06-13 10:46:41 +08:00
Yoshi Huang
bb1eb60f51 Back out 421ed10b0e81(Bug 762760 - Part 2) for wrong Bug number in comment 2012-06-19 16:57:12 +08:00
Yoshi Huang
49ff131916 Bug 767620 - Part 2: RIL implementation. r=philikon 2012-06-13 10:46:41 +08:00
Ehsan Akhgari
30e49b6b7c 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 (dom parts); r=bzbarsky 2012-06-14 22:31:55 -04:00
Ryan VanderMeulen
b74e4a29db Revert c39d36167b99 due to a horribly munged backout. 2012-06-10 19:44:50 -04:00
Ryan VanderMeulen
061d4c2616 Backout the bug 754202 backout due to orange. 2012-06-10 19:37:47 -04:00
Ryan VanderMeulen
1241b67c63 Merge the last PGO-green inbound changeset to m-c 2012-06-10 18:21:22 -04:00
Olli Pettay
94414ed431 Bug 761613 - Merge nsIPrivateDOMEvent to nsIDOMEvent, r=jst 2012-06-10 21:14:30 +03:00
Andrew McCreight
9152e14841 Bug 754478 - clean up cycle collector JS tracing callbacks. r=bent 2012-05-15 09:56:39 -07:00
Mounir Lamouri
3abb37a75c Bug 760011 - Make nsIMozSmsRequest inherits from nsIDOMDOMRequest. r=sicking
--HG--
extra : rebase_source : 1ccde2191835bc7eddd68ff2afc12fa73897f5d1
2012-06-09 13:49:02 +02:00
Mounir Lamouri
9b7de99e31 Bug 708546 - Use DOMError in nsIDOMSmsRequest. r=bent
--HG--
extra : rebase_source : 93e54cabbe9aa2fbb19beb3a2078f2ebdf6d1615
2012-06-09 13:46:30 +02:00
Olli Pettay
8a62837fdb Bug 761621 - interfaces inheriting a builtinclass-interface should be builtinclass too, r=khuey
--HG--
extra : rebase_source : 5b3379e0c8263846177aa7854547b3809f4b0109
2012-06-06 19:30:58 +03:00
Philipp von Weitershausen
492bf79bb2 Bug 756607 - Rewrite SMS tests. r=jgriffin DONTBUILD because NPOTB
--HG--
rename : dom/sms/tests/manifest.ini => dom/sms/tests/marionette/manifest.ini
rename : dom/sms/tests/test_emulators.py => dom/sms/tests/marionette/test_between_emulators.py
2012-05-29 17:41:44 -07:00
Gervase Markham
87620f5676 Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
Fernando Jiménez
4f046aad48 Bug 733320 - [WebSMS][B2G SMS] Add 'read' attribute to nsIDOMMozSmsMessage. Part 7 - Tests; r=philikon 2012-05-17 12:42:39 -07:00
Fernando Jiménez
21f008ad5c Bug 733320 - [WebSMS][B2G SMS] Add 'read' attribute to nsIDOMMozSmsMessage. Part 6 - B2G backend; r=philikon 2012-05-17 12:42:38 -07:00
Fernando Jiménez
b91cd2dcad Bug 733320 - [WebSMS][B2G SMS] Add 'read' attribute to nsIDOMMozSmsMessage. Part 5 - IPC; r=mounir 2012-05-17 12:42:38 -07:00
Fernando Jiménez
48ccd6fc1d Bug 733320 - [WebSMS][B2G SMS] Add 'read' attribute to nsIDOMMozSmsMessage. Part 4 - Fallback; r=mounir 2012-05-17 12:42:38 -07:00
Fernando Jiménez
3c2fb23798 Bug 733320 - [WebSMS][B2G SMS] Add 'read' attribute to nsIDOMMozSmsMessage. Part 3 - Android Backend; r=mounir 2012-05-17 12:42:38 -07:00
Fernando Jiménez
e8d8213f07 Bug 733320 - [WebSMS][B2G SMS] Add 'read' attribute to nsIDOMMozSmsMessage. Part 2 - WebSMS; r=mounir 2012-05-17 12:42:38 -07:00
Fernando Jiménez
528090823c Bug 733320 - [WebSMS][B2G SMS] Add 'read' attribute to nsIDOMMozSmsMessage. Part 1. IDLs; r=mounir 2012-05-17 12:42:38 -07:00
Philipp von Weitershausen
d6040a8d64 Bug 753607 - Overhaul existing Marionette WebAPI tests. r=jgriffin DONTBUILD because NPOTB 2012-05-11 13:09:21 -07:00
Vivien Nicolas
d1b51aa40a Bug 742775 - Turn off the debug mode by default on SmsDatabaseService.js. r=philikon 2012-04-11 10:05:35 -07:00