Szu-Yu Chen [:aknow]
7c432865c8
Bug 1054909 - Don't pass number to Callback constructor. r=hsinyi
2014-08-18 19:26:00 -04:00
Bobby Holley
30602c16ab
Bug 1052052 - Hoist Auto*JSContext into nsContentUtils and kill nsCxPusher.{cpp,h}. r=gabor
2014-08-14 18:47:15 -07:00
Ryan VanderMeulen
8c15c6ab96
Backed out changesets 5b1a3161f614, 17a9673ed782, and a9b8c346d295 (bug 1052052) for B2G non-unified bustage.
2014-08-14 17:23:10 -04:00
Bobby Holley
b6d099f558
Bug 1052052 - Hoist Auto*JSContext into nsContentUtils and kill nsCxPusher.{cpp,h}. r=gabor
2014-08-14 12:54:34 -07:00
Szu-Yu Chen [:aknow]
ceb7d859cf
Bug 1051715 - Part 2: Also pass number in notifyDialSuccess. r=hsinyi
2014-08-12 23:51:00 -04:00
Szu-Yu Chen [:aknow]
87b4873063
Bug 1036851 - Part 2: Add ready event (dom). r=hsinyi
2014-07-21 19:17:00 +02:00
Boris Zbarsky
0b86f5635c
Bug 1040263. Eagerly create and preserve Promise reflectors so we always have them available during unlink. r=nsm,bholley.
2014-07-18 21:31:11 -04:00
Szu-Yu Chen [:aknow]
c2ab578f26
Bug 1027513 - Extract CreateCall and CreateCallId. r=hsinyi
2014-06-24 06:52:00 -04:00
Benoit Jacob
84b13c683d
Bug 1028588 - Fix dangerous public destructors in the rest of dom/ - r=ehsan
2014-06-23 15:56:07 -04:00
Hsin-Yi Tsai
4ce981bc56
Bug 981519 - number and name presentation - part 3 - DOM & IPC code. r=smaug
2014-04-10 14:25:42 +08:00
Hsin-Yi Tsai
3b17696a28
Backed out changeset 598098217e1f (bug 981519) for causing regression bug 1026081
2014-06-17 15:37:31 +08:00
Szu-Yu Chen [:aknow]
48869efd74
Bug 1014903 - Get active call by query. r=hsinyi
2014-06-12 19:34:00 -04:00
Hsin-Yi Tsai
a12253a38c
Bug 981519 - number and name presentation - part 3 - DOM & IPC code. r=smaug
2014-04-10 14:25:42 +08:00
Vicamo Yang
03ca6aeb5b
Bug 1023148 - Use WebIDL codegen to implement RIL & WiFi events. r=smaug
2014-06-11 09:23:34 +08:00
Boris Zbarsky
253e2d6c68
Bug 1016560. Remove the footgun of rejecting promises with arbitrary objects. r=khuey
2014-06-03 11:38:38 -04:00
Vicamo Yang
8cb64a40e2
Bug 927320 - 2/2: rename related variables. r=aknow,btian
2014-06-03 22:15:30 +08:00
Vicamo Yang
a2515b9bfe
Bug 927320 - 1/2: rename TelephonyProvider to TelephonyService. r=aknow
...
--HG--
rename : dom/telephony/gonk/TelephonyProvider.js => dom/telephony/gonk/TelephonyService.js
rename : dom/telephony/gonk/TelephonyProvider.manifest => dom/telephony/gonk/TelephonyService.manifest
rename : dom/telephony/ipc/TelephonyIPCProvider.cpp => dom/telephony/ipc/TelephonyIPCService.cpp
rename : dom/telephony/ipc/TelephonyIPCProvider.h => dom/telephony/ipc/TelephonyIPCService.h
rename : dom/telephony/nsIGonkTelephonyProvider.idl => dom/telephony/nsIGonkTelephonyService.idl
rename : dom/telephony/nsITelephonyProvider.idl => dom/telephony/nsITelephonyService.idl
2014-06-03 22:15:25 +08:00
Szu-Yu Chen [:aknow]
892cb3f8bb
Bug 1016849 - Part 2: Remove isActive (dom). r=hsinyi
2014-05-29 00:15:00 -04:00
Szu-Yu Chen [:aknow]
20b9a408ed
Bug 1013745 - Part 2: Get callIndex when dialling success (dom). r=hsinyi
2014-05-26 19:08:00 +02:00
Birunthan Mohanathas
504b581650
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
Szu-Yu Chen [:aknow]
7a01b54a97
Bug 996444 - Remove gTelephonyList. r=hsinyi
2014-04-22 17:57:05 +08:00
Boris Zbarsky
fdbb455d4f
Bug 991742 part 8. Remove the "aScope" argument of WebIDL/nsWrapperCache WrapObject() methods. r=bholley
...
This patch was mostly generated with the following command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e '/WrapObject(JSContext/ {; N; s/\(WrapObject(JSContext *\* *a\{0,1\}[Cc]x\),\n\{0,1\} *JS::Handle<JSObject\*> a\{0,1\}[sS]cope/\1/ ; }' -i ""
and then reverting the changes that made to
dom/bindings/BindingUtils.h, since those WrapObject methods are not
the ones we're trying to change here, plus a bunch of manual fixups
for cases that this command did not catch (including all the callsites
of WrapObject()).
2014-04-08 18:27:18 -04:00
Boris Zbarsky
3f26a82832
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
...
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-08 18:27:17 -04:00
Szu-Yu Chen [:aknow]
bb2d762d2e
Bug 990467 - Part 3: DOM: Re-order code to avoid multi-thread issue. r=hsinyi
2014-04-04 08:18:49 -04:00
Masayuki Nakano
b185105992
Bug 984269 Rename nsDOMEventTargetHelper to mozilla::DOMEventTargetHelper r=smaug
...
--HG--
rename : dom/events/nsDOMEventTargetHelper.cpp => dom/events/DOMEventTargetHelper.cpp
rename : dom/events/nsDOMEventTargetHelper.h => dom/events/DOMEventTargetHelper.h
2014-04-01 15:13:50 +09:00
Hsin-Yi Tsai
f1dc09d9d9
Bug 979626 - Crash in Telephony while running stability scripts. r=vicamo
2014-03-05 20:19:38 +08:00
Hsin-Yi Tsai
52b552a8e1
Bug 881174 - part4 - cdma 3way call DOM and IPC. r=vicamo
2014-02-21 17:52:13 +08:00
Szu-Yu Chen [:aknow]
26ffb2e791
Bug 969218 - Part 4: Use promise for dial and dialEmergency - dom. r=khuey
2014-02-27 14:12:30 +08:00
Ryan VanderMeulen
9d2e533edb
Backed out 6 changesets (bug 969218) for bustage. DONTBUILD
...
Backed out changeset 86356906ecf0 (bug 969218)
Backed out changeset 46fa16a18c27 (bug 969218)
Backed out changeset 75219ceb5175 (bug 969218)
Backed out changeset b9f4ba525eec (bug 969218)
Backed out changeset 323c1329614b (bug 969218)
Backed out changeset e0fa4e0eee36 (bug 969218)
2014-02-26 14:27:54 -05:00
Szu-Yu Chen [:aknow]
d69ee6fd46
Bug 969218 - Part 4: dom r=khuey
2014-02-26 11:03:56 -08:00
Hsin-Yi Tsai
e2cc4dc74b
Bug 963813 - make sure no another outgoing call when there's already one. r=aknow
2014-01-29 14:27:22 +08:00
Szu-Yu Chen [:aknow]
368722d8b3
Bug 952783 - Use first call instead of active call. r=hsinyi
2014-01-15 09:41:50 -05:00
Boris Zbarsky
9d25dc48cc
Bug 950315 part 1. Convert a bunch of event targets to passing a Window or nsDOMEventTargetHelper directly to the constructor of their ancestor nsDOMEventTargetHelper. r=smaug
2014-01-06 21:53:23 -05:00
Hsin-Yi Tsai
3dc0c1479a
Bug 912849 - part3 - IPC & DOM impl. r=khuey
2013-10-28 14:43:14 +08:00
Szu-Yu Chen [:aknow]
768d36b8b0
Bug 814625 - Part 5: DOM: Add multisim support. r=khuey
2013-10-31 08:05:51 -04:00
Szu-Yu Chen [:aknow]
54114f2d12
Bug 814625 - Part 4: DOM: Refactor. r=khuey
2013-10-31 08:05:51 -04:00
Szu-Yu Chen [:aknow]
5ac37c4319
Bug 814625 - Part 3: DOM: Code reorder. r=khuey
2013-10-31 08:05:51 -04:00
Ryan VanderMeulen
6a6ba035dd
Backed out 9 changesets (bug 814625) for desktop build bustage.
...
Backed out changeset a107de5616a0 (bug 814625)
Backed out changeset 416665a419f4 (bug 814625)
Backed out changeset b6fc8734864f (bug 814625)
Backed out changeset 9f5e2e44a914 (bug 814625)
Backed out changeset 17b3050df362 (bug 814625)
Backed out changeset 43a047c081c8 (bug 814625)
Backed out changeset 90bdcd099320 (bug 814625)
Backed out changeset 8957cc31cce2 (bug 814625)
Backed out changeset de45eb7a8d16 (bug 814625)
2013-10-30 15:48:39 -04:00
Szu-Yu Chen [:aknow]
88b6f2b9fd
Bug 814625 - Part 5: DOM: Add multisim support. r=khuey
2013-10-30 15:06:41 -04:00
Szu-Yu Chen [:aknow]
57a6adcd62
Bug 814625 - Part 4: DOM: Refactor. r=khuey
2013-10-30 15:06:41 -04:00
Szu-Yu Chen [:aknow]
180417a734
Bug 814625 - Part 3: DOM: Code reorder. r=khuey
2013-10-30 15:06:41 -04:00
Vicamo Yang
c4bf3de5f9
Bug 915604: Hide RIL DOM APIs from regular Web pages. r=khuey, f=emk
2013-10-18 04:51:27 +08:00
Boris Zbarsky
9cc662a2d6
Bug 915971. Rename FooReturnValue unions to OwningFoo, because we use them for more than just return values. r=dzbarsky
2013-09-17 11:16:02 -04:00
Vicamo Yang
43b8e10872
Bug 910568 - WebTelephony: move DOM classes to namespace mozilla::dom. r=khuey
2013-09-12 05:47:14 +02:00
Vicamo Yang
7252df0bea
Bug 864485 - 2/3: DOM & IPC. r=khuey
2013-09-07 14:19:53 +08:00
Ryan VanderMeulen
d82368f831
Backed out 7 changesets (bug 907585, bug 873351, bug 864485) for making phones unbootable.
...
Backed out changeset 001a849303de (bug 873351)
Backed out changeset 8020b3013618 (bug 907585)
Backed out changeset 9039460e09c5 (bug 907585)
Backed out changeset 9464e393a501 (bug 907585)
Backed out changeset d6920653de69 (bug 864485)
Backed out changeset 20ef446b27cd (bug 864485)
Backed out changeset e27c780e1ef5 (bug 864485)
2013-09-06 17:28:10 -04:00
Vicamo Yang
3f03665fbf
Bug 864485 - 2/3: DOM & IPC. r=khuey
2013-09-06 16:11:34 +08:00
Hsin-Yi Tsai
0256983af8
Bug 772765 - part5 - Telephony DOM - fix unlink crash. r=bent
2013-08-20 15:57:19 +08:00
Hsin-Yi Tsai
2ea077b16b
Bug 772765 - part2 - Telephony DOM. r=bent
2013-07-06 18:24:55 +08:00
Ms2ger
6ec28362b3
Bug 901323 - Don't include nsContentUtils.h unnecessarily; r=jlebar
2013-08-14 08:56:21 +02:00