Oleg Romashin
f51440bfa1
Bug 877191 - Gonk does not compile with later m-c on 4.6 compiler. r=mwu
...
From 0ff67b491787206102e3f079026bdb54339f69bf Mon Sep 17 00:00:00 2001
---
dom/system/gonk/GonkGPSGeolocationProvider.cpp | 6 +++---
dom/system/gonk/GonkGPSGeolocationProvider.h | 1 +
widget/gonk/nsIdleServiceGonk.h | 7 +++----
3 files changed, 7 insertions(+), 7 deletions(-)
2013-05-29 17:43:17 -07:00
Bobby Holley
f2943090bd
Bug 868130 - Remove the lion's share of JSAutoRequests in gecko. r=gabor
...
There are still a handful that either are used with other runtimes, or that
happen very early/late in cx the lifetime of various things where it doesn't
necessarily make sense to have a cx on the stack. This should definitely ensure
that we're not doing double-duty with the nsCxPusher change, though.
2013-05-22 10:05:28 -06:00
Kan-Ru Chen (陳侃如)
0964467f04
Bug 865249 - Wrap GetSingleton in a MainThread event. r=jdm
2013-04-26 10:54:45 +08:00
Cykesiopka
84eebaf3c9
Bug 645402 - Remove ToInteger() workarounds in mozilla-central. r=bz
2013-04-24 08:36:09 -04:00
Blake Kaplan
e9235ac9fe
Bug 855036 - Don't treat a string as an object. r=gwagner
...
--HG--
extra : rebase_source : 98e7ed9d1252847ece46548882d5654f6492ee19
2013-04-03 15:45:35 -07:00
Edgar Chen
af466bf9c3
Bug 828307 - Part 2: GPS change. r=kchen
2013-02-25 11:59:30 +08:00
Edgar Chen
e164edb566
Bug 846643 - Should use do_GetService() to get RadioInterfaceLayer. r=kchen
2013-02-27 23:08:36 +08:00
Yoshi Huang
c8ffccc19c
Bug 830164 - Part 4: Update GPS. r=dougt
2013-01-10 14:57:49 +01:00
Ed Morley
46036aa594
Backout aad75c7c49c5:2addf5bd1730 (bug 830164) for B2G marionette failures on a CLOSED TREE
2013-01-28 10:44:15 +00:00
Yoshi Huang
e5d87e7d38
Bug 830164 - Part 4: Update GPS. r=dougt
2013-01-10 14:57:49 +01:00
Patrick Wang
f1e304e86c
Bug 832925 - Use DeactivateDataCallByType to close SUPL connection. r=dougt
2013-01-21 19:30:54 +08:00
Kan-Ru Chen (陳侃如)
f4f9c0b80c
Bug 824558 - Do not destroy mInitThread. r=dougt
2012-12-25 17:13:20 +08:00
Kan-Ru Chen (陳侃如)
509c9e9a6f
Bug 821517 - Remove MOZ_ASSERT(mInitThread) r=dougt
2012-12-24 10:53:37 +08:00
Ehsan Akhgari
acbb3c0ee8
Bug 769285 - Use separate access tokens for private and public geolocation requests. r=dougt
2012-12-06 21:13:15 -05:00
Josh Matthews
bd2d1bc95e
Backed out changeset 7c45205a61a0 (bug 769285)
2012-11-28 11:51:42 -05:00
Josh Matthews
f74fb5eabf
Bug 769285 - Use separate access tokens for private and public geolocation requests. r=dougt
2012-11-28 11:20:20 -05:00
Gregor Wagner
2a55eaaad3
Bug 811414 - nsISettingsServiceCallback shouldn't use [implicit_jscontext]. Followup. r=mrbkap
2012-11-14 13:46:48 -08:00
Gregor Wagner
3fb2b40d93
Bug 811414 - nsISettingsServiceCallback shouldn't use [implicit_jscontext]. r=bholley
2012-11-14 13:46:38 -08:00
Gregor Wagner
28b91e9e9a
Backout Bug 811414 for breaking B2G
2012-11-14 13:09:21 -08:00
Gregor Wagner
c88b6950ec
Bug 811414 - nsISettingsServiceCallback shouldn't use [implicit_jscontext]. r=bholley
2012-11-14 13:00:51 -08:00
Patrick Wang
b8c849c3b5
Bug 801540 - Use setupDataCallByType to build data connection. r=dougt
2012-10-23 15:18:11 +08:00
Kan-Ru Chen (陳侃如)
6f14b9f100
Bug 795658 - Make sure most methods are running from main thread. r=dougt
2012-10-04 10:00:59 +08:00
Kan-Ru Chen (陳侃如)
5b7b94a49c
Bug 789385 - Use AGPS_TYPE_SUPL instead of AGPS_TYPE_ANY. r=dougt
2012-09-07 13:04:05 +08: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
Vicamo Yang
60d23fbea0
Bug 780558 - B2G RIL: expose cell LAC/CID - Part 2: RIL implementation, r=philikon
2012-08-16 09:36:56 +08:00
Phil Ringnalda
4ebf706d08
Backout cfba38edc205, cec9aff342dc, a154933f2bef (bug 780558) for mochitest-3 bustage
2012-08-14 22:19:28 -07:00
Vicamo Yang
6bbee37bbc
Bug 780558 - B2G RIL: expose cell LAC/CID - Part 2: RIL implementation, r=philikon
2012-08-15 12:35:46 +08:00
Aryeh Gregor
d0ad5a7d0c
Bug 777292 part 2 - Change all nsnull to nullptr
2012-07-30 17:20:58 +03:00
Kan-Ru Chen
2fab311490
Bug 777597 - Add more check to GonkGPSGeolocationProvider. r=dougt
2012-07-27 06:50:27 +08:00
Gervase Markham
1c9fc1e594
Bug 774614 - Relicense Gonk/Gecko interface code to Apache License 2.0.
2012-07-20 10:10:44 +01:00
Kan-Ru Chen
8a5584b12b
Bug 715788 - Add A-GPS support for gonk. r=dougt
2012-07-16 20:38:46 -04:00
Kan-Ru Chen
a91837d290
Bug 715788 - Refactor static functions to static member functions. r=dougt
2012-07-16 20:38:46 -04:00
Kan-Ru Chen
580b28f3c0
Bug 752649 - Fill empty GPS callbacks. r=dougt
2012-06-04 11:17:43 +08:00
Gervase Markham
82ff7027aa
Bug 716478 - update licence to MPL 2.
2012-05-21 12:12:37 +01:00
Doug Turner
48e2d52190
Bug 738022 - gonk gps - test GpsInterface size before using. r=jdm
2012-03-21 22:25:59 -07:00
Josh Dhaliwal
36b41a1970
Bug 735011 - geolocation - support enableHighAccuracy position option. r=dougt
2012-03-21 10:52:35 -07:00
Kyle Machulis
5a8150c5e0
Bug 735017: Clean up namespaces and naming for gonk dom objects in gonk specific code - Patch 1: Change dom/system/b2g to dom/system/gonk; r=philikon
...
--HG--
rename : dom/system/b2g/AudioManager.cpp => dom/system/gonk/AudioManager.cpp
rename : dom/system/b2g/AudioManager.h => dom/system/gonk/AudioManager.h
rename : dom/system/b2g/GonkGPSGeolocationProvider.cpp => dom/system/gonk/GonkGPSGeolocationProvider.cpp
rename : dom/system/b2g/GonkGPSGeolocationProvider.h => dom/system/gonk/GonkGPSGeolocationProvider.h
rename : dom/system/b2g/Makefile.in => dom/system/gonk/Makefile.in
rename : dom/system/b2g/RadioInterfaceLayer.js => dom/system/gonk/RadioInterfaceLayer.js
rename : dom/system/b2g/RadioInterfaceLayer.manifest => dom/system/gonk/RadioInterfaceLayer.manifest
rename : dom/system/b2g/SystemWorkerManager.cpp => dom/system/gonk/SystemWorkerManager.cpp
rename : dom/system/b2g/SystemWorkerManager.h => dom/system/gonk/SystemWorkerManager.h
rename : dom/system/b2g/net_worker.js => dom/system/gonk/net_worker.js
rename : dom/system/b2g/nsIAudioManager.idl => dom/system/gonk/nsIAudioManager.idl
rename : dom/system/b2g/nsIRadioInterfaceLayer.idl => dom/system/gonk/nsIRadioInterfaceLayer.idl
rename : dom/system/b2g/nsIWorkerHolder.idl => dom/system/gonk/nsIWorkerHolder.idl
rename : dom/system/b2g/nsRadioInterfaceLayer.h => dom/system/gonk/nsRadioInterfaceLayer.h
rename : dom/system/b2g/ril_consts.js => dom/system/gonk/ril_consts.js
rename : dom/system/b2g/ril_worker.js => dom/system/gonk/ril_worker.js
rename : dom/system/b2g/systemlibs.js => dom/system/gonk/systemlibs.js
rename : dom/system/b2g/tests/header_helpers.js => dom/system/gonk/tests/header_helpers.js
rename : dom/system/b2g/tests/test_ril_worker_buf.js => dom/system/gonk/tests/test_ril_worker_buf.js
rename : dom/system/b2g/tests/test_ril_worker_sms.js => dom/system/gonk/tests/test_ril_worker_sms.js
rename : dom/system/b2g/tests/xpcshell.ini => dom/system/gonk/tests/xpcshell.ini
2012-03-14 15:42:31 -07:00