Jessica Jong
a491be2740
Bug 1216853 - B2G RIL: chain promises properly in test_network_interface_mtu.js. r=echen
...
--HG--
extra : commitid : DZYnCt3L5zo
2015-10-22 15:43:48 +08:00
Nathan Froyd
01583602a9
Bug 1207245 - part 6 - rename nsRefPtr<T> to RefPtr<T>; r=ehsan; a=Tomcat
...
The bulk of this commit was generated with a script, executed at the top
level of a typical source code checkout. The only non-machine-generated
part was modifying MFBT's moz.build to reflect the new naming.
CLOSED TREE makes big refactorings like this a piece of cake.
# The main substitution.
find . -name '*.cpp' -o -name '*.cc' -o -name '*.h' -o -name '*.mm' -o -name '*.idl'| \
xargs perl -p -i -e '
s/nsRefPtr\.h/RefPtr\.h/g; # handle includes
s/nsRefPtr ?</RefPtr</g; # handle declarations and variables
'
# Handle a special friend declaration in gfx/layers/AtomicRefCountedWithFinalize.h.
perl -p -i -e 's/::nsRefPtr;/::RefPtr;/' gfx/layers/AtomicRefCountedWithFinalize.h
# Handle nsRefPtr.h itself, a couple places that define constructors
# from nsRefPtr, and code generators specially. We do this here, rather
# than indiscriminantly s/nsRefPtr/RefPtr/, because that would rename
# things like nsRefPtrHashtable.
perl -p -i -e 's/nsRefPtr/RefPtr/g' \
mfbt/nsRefPtr.h \
xpcom/glue/nsCOMPtr.h \
xpcom/base/OwningNonNull.h \
ipc/ipdl/ipdl/lower.py \
ipc/ipdl/ipdl/builtin.py \
dom/bindings/Codegen.py \
python/lldbutils/lldbutils/utils.py
# In our indiscriminate substitution above, we renamed
# nsRefPtrGetterAddRefs, the class behind getter_AddRefs. Fix that up.
find . -name '*.cpp' -o -name '*.h' -o -name '*.idl' | \
xargs perl -p -i -e 's/nsRefPtrGetterAddRefs/RefPtrGetterAddRefs/g'
if [ -d .git ]; then
git mv mfbt/nsRefPtr.h mfbt/RefPtr.h
else
hg mv mfbt/nsRefPtr.h mfbt/RefPtr.h
fi
--HG--
rename : mfbt/nsRefPtr.h => mfbt/RefPtr.h
2015-10-18 01:24:48 -04:00
Nathan Froyd
583afa0965
Bug 1207245 - part 3 - switch all uses of mozilla::RefPtr<T> to nsRefPtr<T>; r=ehsan
...
This commit was generated using the following script, executed at the
top level of a typical source code checkout.
# Don't modify select files in mfbt/ because it's not worth trying to
# tease out the dependencies currently.
#
# Don't modify anything in media/gmp-clearkey/0.1/ because those files
# use their own RefPtr, defined in their own RefCounted.h.
find . -name '*.cpp' -o -name '*.h' -o -name '*.mm' -o -name '*.idl'| \
grep -v 'mfbt/RefPtr.h' | \
grep -v 'mfbt/nsRefPtr.h' | \
grep -v 'mfbt/RefCounted.h' | \
grep -v 'media/gmp-clearkey/0.1/' | \
xargs perl -p -i -e '
s/mozilla::RefPtr/nsRefPtr/g; # handle declarations in headers
s/\bRefPtr</nsRefPtr</g; # handle local variables in functions
s#mozilla/RefPtr.h#mozilla/nsRefPtr.h#; # handle #includes
s#mfbt/RefPtr.h#mfbt/nsRefPtr.h#; # handle strange #includes
'
# |using mozilla::RefPtr;| is OK; |using nsRefPtr;| is invalid syntax.
find . -name '*.cpp' -o -name '*.mm' | xargs sed -i -e '/using nsRefPtr/d'
# RefPtr.h used |byRef| for dealing with COM-style outparams.
# nsRefPtr.h uses |getter_AddRefs|.
# Fixup that mismatch.
find . -name '*.cpp' -o -name '*.h'| \
xargs perl -p -i -e 's/byRef/getter_AddRefs/g'
2015-10-18 00:40:10 -04:00
Carsten "Tomcat" Book
15c4d32dd7
merge mozilla-inbound to mozilla-central a=merge
2015-10-16 13:17:56 +02:00
Dave Hylands
019bf5ec06
Bug 1177374 - Call realpath on volume mount points so thatVolumeService::GetVolumeByPath works properly. r=achen
2015-10-15 11:42:10 -07:00
Jessica Jong
94ae9b0eda
Bug 1214518 - B2G RIL: wait for emulator pending command before calling finish(). r=echen
...
--HG--
extra : commitid : KD3dGA1IRve
2015-10-15 10:51:14 +08:00
Dave Hylands
5b06270c15
Bug 1205028 - Don't tell MTP server about files that it added/modified. r=alchen
...
With this patch, we introduce mtp-watcher-notify, used to tell device storage
about new files added by MTP, and mtp-watcher-update, used to tell MTP about
device storage changes.
By using 2 new messages, rather than trying to reuse file-watcher-notify and
file-watcher-update, we prevent update "loops".
2015-10-13 15:35:11 -07:00
Edgar Chen
399862a3ac
Bug 1213547 - [Cellbroadcast] Split test_ril_worker_cellbroadcast.js into smaller tests. r=btseng
...
--HG--
rename : dom/system/gonk/tests/test_ril_worker_cellbroadcast.js => dom/system/gonk/tests/test_ril_worker_cellbroadcast_gsm.js
extra : commitid : EHNXJp6TDAd
extra : rebase_source : 49f00c3248161656fe96a3f078c565c9f51a7c44
2015-10-10 12:05:38 +08:00
Tom Schuster
2dd52c790d
Bug 980945 - Followup: Fix b2g test on CLOSED TREE. r=tree-fairy
2015-10-15 19:23:11 +02:00
Tooru Fujisawa
24ab66bc98
Bug 1217093
- Remove for-each from dom/. r=smaug
...
--HG--
extra : commitid : DcjxshJqlKg
extra : rebase_source : 23bc9a985f1e6d13e13837e31bb9b88b9be24d55
2015-10-19 02:00:50 +09:00
Andrew McCreight
0ff7248107
Bug 1210517 - Create nsVariant directly rather than via do_CreateInstance(). r=froydnj
...
The goal here is to leave creation stuff mostly for JS, so we can
convert it entirely over to a non-threadsafe cycle-collected version
without breaking any existing C++ users.
I didn't do this for a remaining use in nsGlobalWindow.h to avoid
including nsVariant.h all over the place.
2015-10-07 08:17:42 -07:00
Carsten "Tomcat" Book
08997000eb
Backed out 2 changesets (bug 1202902
) to recking bug 1202902
to be able to reopen inbound on a CLOSED TREE
...
Backed out changeset 647025383676 (bug 1202902
)
Backed out changeset d70c7fe532c6 (bug 1202902
)
2015-10-07 14:03:21 +02:00
Carsten "Tomcat" Book
e7ef778c9d
Backed out 1 changesets (bug 1202902
) for causing merge conflicts to mozilla-central
...
Backed out changeset cfc1820361f5 (bug 1202902
)
--HG--
extra : rebase_source : 5d3db72337754bc7ab0ed0c30b2896100411ff92
2015-10-07 12:13:45 +02:00
Shu-yu Guo
d06b6030f6
Bug 1202902
- Scripted fix the world.
2015-10-06 14:00:31 -07:00
Carsten "Tomcat" Book
f11b039d32
Merge m-c to b2g-i on a CLOSED TREE
2015-10-05 13:55:18 +02:00
XiaoLe Sun
c9bc7571c0
Bug 1187262 - Let the flag 'Services.io.offline' reference the state of tethering. r=jjong
2015-10-05 09:59:08 +08:00
Phil Ringnalda
93999bd66d
Bug 1207936 - Disable test_ril_worker_cellbroadcast.js for constant timeouts
2015-10-04 18:35:12 -07:00
Alastor Wu
4c8b8db1c6
Bug 1196358 - update volume setting to database when the volume changing. r=sotaro.
...
--HG--
extra : transplant_source : %F7%C4%E9b0%23%91e%88p%A7_2%14D.%88J%7E%FE
2015-09-30 16:14:59 +08:00
Carsten "Tomcat" Book
363e40e298
merge mozilla-inbound to mozilla-central a=merge
2015-09-28 14:13:24 +02:00
Dave Hylands
dfe7f73d62
Bug 1195166 - AutoMounter: add ignore command to allow volumes to be ignored. r=alchen
...
--HG--
extra : amend_source : f1f8c08429d8ca614c6c936dc8b20ab227eaac99
2015-09-25 13:23:32 -07:00
Wes Kocher
40f2f82907
Merge m-c to inbound, a=merge
2015-09-25 18:02:38 -07:00
Hayden Huang
997857d190
Bug 1175447 - mono audio support. r=padenot, r=sotaro
...
This patch is to enable mono audio option for those who has full hearing loss in one ear.
With this feature, they can get the complete audio with using one ear.
--HG--
extra : transplant_source : %EC%27%97%1Ai%0D%E3%BC%D0%12%97-K%0Ek%BD%8A%C8%A9%85
2015-08-06 14:30:22 +08:00
Sotaro Ikeda
26362a68bd
Bug 1208155 - Make hal functions explicit in AudioManager r=alwu
2015-09-25 04:56:28 -07:00
Garvan Keeley
20b7d96d1c
Bug 1207266 - turn off b2g stumbler if no RIL. r=jdm
2015-09-24 01:29:47 -04:00
Wes Kocher
0625b82581
Merge b2ginbound to central, a=merge CLOSED TREE
2015-09-23 13:18:17 -07:00
Carsten "Tomcat" Book
d1ec083e7e
Backed out 1 changesets (bug 1196358) for causing test failures in test_settings_service.xul
...
Backed out changeset a2e4fa843ae5 (bug 1196358)
2015-09-23 12:09:29 +02:00
Alastor Wu
ef1434ba9e
Bug 1196358 - update volume setting to database when the volume changing. r=sotaro
...
--HG--
extra : rebase_source : 72ba871c7012c9817df2516c061ffa874605208c
2015-09-22 11:24:31 +08:00
Jessica Jong
501dddb517
Bug 1174998 - Part 4: Test cases for network interface's MTU. r=echen
...
--HG--
extra : commitid : LUMCyzwMO8c
2015-09-23 15:35:34 +08:00
Jessica Jong
3e46f04257
Bug 1174998 - Part 3: Read data call's MTU from network/apn settings. r=echen
...
--HG--
extra : commitid : Fa5T0Y4cD12
2015-09-23 15:35:32 +08:00
Jessica Jong
6d44b27f12
Bug 1174998 - Part 2: Set MTU for connected network interfaces. r=echen
...
--HG--
extra : commitid : Py0xGFk3tb
2015-09-23 15:35:31 +08:00
Jessica Jong
74cd4ce044
Bug 1174998 - Part 1: add setMtu() support in NetworkService. r=echen,smaug
...
--HG--
extra : commitid : HTYjKaoJwgb
2015-09-23 15:35:29 +08:00
Andrea Marchesini
5bd948cce6
Bug 1167465 - Exposing Allowed Audio Channels in System App's Window, r=alwu, r=fabrice
2015-09-23 08:12:52 +01:00
Chris Peterson
71920a9550
Bug 1207030 - Enable -Wshadow flag in more directories that have no -Wshadow warnings. r=glandium
2015-09-22 21:39:03 -07:00
Sotaro Ikeda
f947a303a8
Bug 1206212 - Remove AUDIO_STREAM_FM after KK r=alwu
2015-09-21 17:43:41 -07:00
john1984
1348a3cf3f
Bug 1122376 - Support write SIM contact dialling number exceed 20 digits. r=echen
2015-09-20 19:57:00 +02:00
John Dai
c288c4bd19
Bug 1122376 - Support read SIM contact dialling number exceed 20 digits. r=echen
2015-09-20 19:48:00 +02:00
Shu-yu Guo
64db2267cf
Bug 1202902
- Mass replace toplevel 'let' with 'var' in preparation for global lexical scope. (rs=jorendorff)
2015-09-15 11:19:45 -07:00
John Dai
47a53d2e56
Bug 1194149 - Continue importing contacts when there is no sufficient Type 2 USIM contact fields record. r=echen
...
--HG--
extra : rebase_source : 9428d31a0469c72648348ba9fcc2a70f74d030b2
2015-09-13 23:54:00 +02:00
Dave Hylands
59280e28fd
Bug 1188796 - Have MTP record modified timestamps when they're passed. r=alchen
...
Of the 3 popular host platforms, only Windows properly passes in the
modification timestamp of the file.
Under linux, it passes in an empty string, which then gets passed
to beginSendObject as zero. This patch now treats that as the current
date/time.
Under OSX, the Android FIle Transfer program passes in the date modified
and date created, but sets both of these fields to be the current
date/time and not the times from the files being copied.
Hl: Enter commit message. Lines beginning with 'HG:' are removed.
2015-09-14 17:38:19 -07:00
Jessica Jong
9a44f07882
Bug 1175817 - [NetworkManager] remove old default routes explicitly. r=echen,smaug
...
--HG--
extra : commitid : 6xQMx4MoezU
2015-09-11 15:26:58 +08:00
Phil Ringnalda
9565dedf7d
Merge m-c to m-i
...
CLOSED TREE
2015-09-10 15:30:31 -07:00
Jessica Jong
7b68e2f695
Bug 1197667 - [NetworkManager] Part 2: add test case for 'allNetworkInfo'. r=echen
...
--HG--
extra : commitid : BS7Cl4oJiHM
2015-09-10 14:50:21 +08:00
Jessica Jong
ac34ba9ae5
Bug 1197667 - [NetworkManager] Part 1: add missing implementation for 'allNetworkInfo'. r=echen
...
--HG--
extra : commitid : 3grnYPdElv
2015-09-10 14:50:19 +08:00
Garvan Keeley
5368b8a344
Bug 1200310 - No need to wifi+cell scan if stumble file is full, just trigger upload. r=jdm
2015-09-08 21:20:57 -04:00
Garvan Keeley
4c80c2ee2f
Bug 1200310 - Instead of thread guard flags for 'is stumbling' AND 'is uploading', we can use just one flag. r=jdm
2015-09-08 21:20:56 -04:00
Garvan Keeley
f4cd1eaf78
Bug 1200304 - Move stumbling code from gonkgps to MozStumbler.cpp. r=jdm
2015-09-08 21:20:56 -04:00
Garvan Keeley
2a57d41d3b
Bug 1199395 - FxOS Stumbling gzip the stumbles to store more data. r=jdm
2015-09-08 21:20:56 -04:00
Andrea Marchesini
cd4473d62f
Bug 1203426 - Rename StructuredCloneIPCHelper to StructuredCloneData, r=smaug
...
--HG--
rename : dom/ipc/StructuredCloneIPCHelper.cpp => dom/ipc/StructuredCloneData.cpp
rename : dom/ipc/StructuredCloneIPCHelper.h => dom/ipc/StructuredCloneData.h
2015-09-10 21:50:58 +01:00
Alphan Chen
2cb037411f
Bug 1154435 - [Stumbler] FxOS Geo Stumbling for Mozilla Location Service. r=jdm
2015-09-03 19:36:00 +02:00
Nicholas Nethercote
f44287005f
Bug 1198334 (part 1) - Replace the opt-in FAIL_ON_WARNINGS with the opt-out ALLOW_COMPILER_WARNINGS. r=glandium.
...
The patch removes 455 occurrences of FAIL_ON_WARNINGS from moz.build files, and
adds 78 instances of ALLOW_COMPILER_WARNINGS. About half of those 78 are in
code we control and which should be removable with a little effort.
--HG--
extra : rebase_source : 82e3387abfbd5f1471e953961d301d3d97ed2973
2015-08-27 20:44:53 -07:00
Ben Tian
f9389ddddf
Bug 1193379 - Create dom/bluetooth/common/webapi folder. r=joliu
...
--HG--
rename : dom/bluetooth/common/BluetoothAdapter.cpp => dom/bluetooth/common/webapi/BluetoothAdapter.cpp
rename : dom/bluetooth/common/BluetoothAdapter.h => dom/bluetooth/common/webapi/BluetoothAdapter.h
rename : dom/bluetooth/common/BluetoothClassOfDevice.cpp => dom/bluetooth/common/webapi/BluetoothClassOfDevice.cpp
rename : dom/bluetooth/common/BluetoothClassOfDevice.h => dom/bluetooth/common/webapi/BluetoothClassOfDevice.h
rename : dom/bluetooth/common/BluetoothDevice.cpp => dom/bluetooth/common/webapi/BluetoothDevice.cpp
rename : dom/bluetooth/common/BluetoothDevice.h => dom/bluetooth/common/webapi/BluetoothDevice.h
rename : dom/bluetooth/common/BluetoothDiscoveryHandle.cpp => dom/bluetooth/common/webapi/BluetoothDiscoveryHandle.cpp
rename : dom/bluetooth/common/BluetoothDiscoveryHandle.h => dom/bluetooth/common/webapi/BluetoothDiscoveryHandle.h
rename : dom/bluetooth/common/BluetoothGatt.cpp => dom/bluetooth/common/webapi/BluetoothGatt.cpp
rename : dom/bluetooth/common/BluetoothGatt.h => dom/bluetooth/common/webapi/BluetoothGatt.h
rename : dom/bluetooth/common/BluetoothGattCharacteristic.cpp => dom/bluetooth/common/webapi/BluetoothGattCharacteristic.cpp
rename : dom/bluetooth/common/BluetoothGattCharacteristic.h => dom/bluetooth/common/webapi/BluetoothGattCharacteristic.h
rename : dom/bluetooth/common/BluetoothGattDescriptor.cpp => dom/bluetooth/common/webapi/BluetoothGattDescriptor.cpp
rename : dom/bluetooth/common/BluetoothGattDescriptor.h => dom/bluetooth/common/webapi/BluetoothGattDescriptor.h
rename : dom/bluetooth/common/BluetoothGattServer.cpp => dom/bluetooth/common/webapi/BluetoothGattServer.cpp
rename : dom/bluetooth/common/BluetoothGattServer.h => dom/bluetooth/common/webapi/BluetoothGattServer.h
rename : dom/bluetooth/common/BluetoothGattService.cpp => dom/bluetooth/common/webapi/BluetoothGattService.cpp
rename : dom/bluetooth/common/BluetoothGattService.h => dom/bluetooth/common/webapi/BluetoothGattService.h
rename : dom/bluetooth/common/BluetoothLeDeviceEvent.cpp => dom/bluetooth/common/webapi/BluetoothLeDeviceEvent.cpp
rename : dom/bluetooth/common/BluetoothLeDeviceEvent.h => dom/bluetooth/common/webapi/BluetoothLeDeviceEvent.h
rename : dom/bluetooth/common/BluetoothManager.cpp => dom/bluetooth/common/webapi/BluetoothManager.cpp
rename : dom/bluetooth/common/BluetoothManager.h => dom/bluetooth/common/webapi/BluetoothManager.h
rename : dom/bluetooth/common/BluetoothPairingHandle.cpp => dom/bluetooth/common/webapi/BluetoothPairingHandle.cpp
rename : dom/bluetooth/common/BluetoothPairingHandle.h => dom/bluetooth/common/webapi/BluetoothPairingHandle.h
rename : dom/bluetooth/common/BluetoothPairingListener.cpp => dom/bluetooth/common/webapi/BluetoothPairingListener.cpp
rename : dom/bluetooth/common/BluetoothPairingListener.h => dom/bluetooth/common/webapi/BluetoothPairingListener.h
rename : dom/bluetooth/common/BluetoothPbapRequestHandle.cpp => dom/bluetooth/common/webapi/BluetoothPbapRequestHandle.cpp
rename : dom/bluetooth/common/BluetoothPbapRequestHandle.h => dom/bluetooth/common/webapi/BluetoothPbapRequestHandle.h
2015-08-21 15:15:41 +08:00
Ben Tian
44c939383c
Bug 1193379 - Rename bluetooth2 folder to common. r=joliu
...
--HG--
rename : dom/bluetooth/bluetooth2/BluetoothAdapter.cpp => dom/bluetooth/common/BluetoothAdapter.cpp
rename : dom/bluetooth/bluetooth2/BluetoothAdapter.h => dom/bluetooth/common/BluetoothAdapter.h
rename : dom/bluetooth/bluetooth2/BluetoothClassOfDevice.cpp => dom/bluetooth/common/BluetoothClassOfDevice.cpp
rename : dom/bluetooth/bluetooth2/BluetoothClassOfDevice.h => dom/bluetooth/common/BluetoothClassOfDevice.h
rename : dom/bluetooth/bluetooth2/BluetoothDevice.cpp => dom/bluetooth/common/BluetoothDevice.cpp
rename : dom/bluetooth/bluetooth2/BluetoothDevice.h => dom/bluetooth/common/BluetoothDevice.h
rename : dom/bluetooth/bluetooth2/BluetoothDiscoveryHandle.cpp => dom/bluetooth/common/BluetoothDiscoveryHandle.cpp
rename : dom/bluetooth/bluetooth2/BluetoothDiscoveryHandle.h => dom/bluetooth/common/BluetoothDiscoveryHandle.h
rename : dom/bluetooth/bluetooth2/BluetoothGatt.cpp => dom/bluetooth/common/BluetoothGatt.cpp
rename : dom/bluetooth/bluetooth2/BluetoothGatt.h => dom/bluetooth/common/BluetoothGatt.h
rename : dom/bluetooth/bluetooth2/BluetoothGattCharacteristic.cpp => dom/bluetooth/common/BluetoothGattCharacteristic.cpp
rename : dom/bluetooth/bluetooth2/BluetoothGattCharacteristic.h => dom/bluetooth/common/BluetoothGattCharacteristic.h
rename : dom/bluetooth/bluetooth2/BluetoothGattDescriptor.cpp => dom/bluetooth/common/BluetoothGattDescriptor.cpp
rename : dom/bluetooth/bluetooth2/BluetoothGattDescriptor.h => dom/bluetooth/common/BluetoothGattDescriptor.h
rename : dom/bluetooth/bluetooth2/BluetoothGattServer.cpp => dom/bluetooth/common/BluetoothGattServer.cpp
rename : dom/bluetooth/bluetooth2/BluetoothGattServer.h => dom/bluetooth/common/BluetoothGattServer.h
rename : dom/bluetooth/bluetooth2/BluetoothGattService.cpp => dom/bluetooth/common/BluetoothGattService.cpp
rename : dom/bluetooth/bluetooth2/BluetoothGattService.h => dom/bluetooth/common/BluetoothGattService.h
rename : dom/bluetooth/bluetooth2/BluetoothLeDeviceEvent.cpp => dom/bluetooth/common/BluetoothLeDeviceEvent.cpp
rename : dom/bluetooth/bluetooth2/BluetoothLeDeviceEvent.h => dom/bluetooth/common/BluetoothLeDeviceEvent.h
rename : dom/bluetooth/bluetooth2/BluetoothManager.cpp => dom/bluetooth/common/BluetoothManager.cpp
rename : dom/bluetooth/bluetooth2/BluetoothManager.h => dom/bluetooth/common/BluetoothManager.h
rename : dom/bluetooth/bluetooth2/BluetoothPairingHandle.cpp => dom/bluetooth/common/BluetoothPairingHandle.cpp
rename : dom/bluetooth/bluetooth2/BluetoothPairingHandle.h => dom/bluetooth/common/BluetoothPairingHandle.h
rename : dom/bluetooth/bluetooth2/BluetoothPairingListener.cpp => dom/bluetooth/common/BluetoothPairingListener.cpp
rename : dom/bluetooth/bluetooth2/BluetoothPairingListener.h => dom/bluetooth/common/BluetoothPairingListener.h
rename : dom/bluetooth/bluetooth2/BluetoothProfileController.cpp => dom/bluetooth/common/BluetoothProfileController.cpp
rename : dom/bluetooth/bluetooth2/BluetoothProfileController.h => dom/bluetooth/common/BluetoothProfileController.h
rename : dom/bluetooth/bluetooth2/BluetoothReplyRunnable.cpp => dom/bluetooth/common/BluetoothReplyRunnable.cpp
rename : dom/bluetooth/bluetooth2/BluetoothReplyRunnable.h => dom/bluetooth/common/BluetoothReplyRunnable.h
rename : dom/bluetooth/bluetooth2/BluetoothService.cpp => dom/bluetooth/common/BluetoothService.cpp
rename : dom/bluetooth/bluetooth2/BluetoothService.h => dom/bluetooth/common/BluetoothService.h
2015-08-21 15:19:12 +08:00
Ryan VanderMeulen
d01fa354cb
Bug 1197986 - Request a longer timeout for tests that started timing out after increasing the number of B2G debug xpcshell chunks from 2 to 4.
2015-08-25 18:31:35 -04:00
Kan-Ru Chen
7e10d74849
Bug 1197689 - Avoid unnecessary sync IPC in AudioChannelManager ctor. r=baku
2015-08-25 11:23:41 +08:00
Wes Kocher
da63c9c4df
Merge m-c to inbound, a=merge
2015-08-21 10:06:54 -07:00
Wes Kocher
9fe7d2dba9
Merge m-c to b2ginbound, a=merge
2015-08-20 12:52:18 -07:00
Andrew Osmond
6280ad44f2
Bug 1166320 - Make volume service safer to use off main thread. r=dhylands
2015-08-20 12:47:23 -04:00
Nick Robson
40e1ba271a
Bug 904479 - Added createPromiseWithId() that returns id of resolver r=kanru,nsm
...
--HG--
extra : rebase_source : 2aae82958670d0154a3cf08bd0e2a80d529e36f3
2015-08-19 14:53:22 -07:00
Michael Layzell
e826e765e4
Bug 1165217 - Use nsIPrincipal instead of nsIURI/appId/inBrowser for nsIQuotaManager, r=janv
2015-08-18 20:24:30 -04:00
Sotaro Ikeda
fbf2a57179
Bug 1194442 - Code clean up of AudioManager r=alwu
2015-08-21 06:28:55 -07:00
Alastor Wu
854989ea1f
Bug 1179181 - Store separate volume setting into setting database. r=baku
2015-08-17 19:38:39 +08:00
Jessica Jong
5cda2e630b
Bug 1185406 - B2G RIL: Read 'pcscf' and expose it in nsIRilNetworkInfo. r=hsinyi
...
--HG--
extra : commitid : BYrQSKdJj7U
2015-08-18 09:54:36 +08:00
Ben Tian
a0a229d80d
Bug 1192693 - [02] Remove bluetooth1 folder and rename webidl files, r=joliu, r=mrbkap
...
--HG--
rename : dom/webidl/BluetoothAdapter2.webidl => dom/webidl/BluetoothAdapter.webidl
rename : dom/webidl/BluetoothDevice2.webidl => dom/webidl/BluetoothDevice.webidl
rename : dom/webidl/BluetoothManager2.webidl => dom/webidl/BluetoothManager.webidl
2015-08-17 15:30:34 +08:00
Will Wang
9fd88cded3
Bug 825149 - Support HFP NREC feature. r=shuang
2015-08-10 04:51:00 -04:00
Samael Wang
349090e33d
Bug 1187832 - Update ril_worker and corresponding test cases. r=btseng
...
--HG--
extra : histedit_source : 69b6c55310e85033040550cdc5145a0721d8f27d
2015-08-04 13:58:42 +08:00
Eric Tsai
3f872986d2
Bug 1184822 - Use classId to get provider. r=fabrice
2015-08-06 11:54:14 +08:00
Carsten "Tomcat" Book
dcc3c5d093
Merge mozilla-central to b2g-inbound
2015-08-05 13:40:29 +02:00
Jessica Jong
520881f002
Bug 1156231 - enable data registration recovery. r=hsinyi
...
--HG--
extra : commitid : 3HrEDw63LLk
2015-08-05 16:29:20 +08:00
Jamin Liu
b346e8685e
Bug 1190337 - Log GPS status and SVs status if the 'gDebug_isLoggingEnabled' is true. r=garvank
2015-08-05 14:27:33 +08:00
Birunthan Mohanathas
7315345693
Bug 1191100
- Remove XPIDL signature comments in .cpp files. r=ehsan
...
Comment-only so DONTBUILD.
2015-08-04 16:17:36 -07:00
Aidin Gharibnavaz
6834863af1
Bug 1177871 - Add a timeout to XHR request of WifiGeoPositionProvider. r=jdm
...
--HG--
extra : rebase_source : 4a7e66437432bdc07d104ba7ea6db422002e73cf
2015-08-02 08:45:00 -04:00
Ryan VanderMeulen
6c087cd301
Backed out changeset 8010e0cbd228 (bug 1177871) for Windows debug test_geolocation_provider_timeout.js crashes.
...
CLOSED TREE
--HG--
extra : amend_source : 6f3589ee0d2a0f18438a69c9f1389ae3ee3b8933
extra : histedit_source : ace16abe5f6c53ba91085d15d4c858dd20b2894e
2015-07-31 15:00:12 -04:00
Aidin Gharibnavaz
3909a2ab43
Bug 1177871 - Timeout added to XHR request of WifiGeoPositionProvider. r=jdm
...
CLOSED TREE
--HG--
extra : histedit_source : a64c486ecc50ac086f1e47dc5a5660690e93d300
2015-07-30 07:01:00 -04:00
Albert Crespell
f718e9cb41
Bug 1177236 - Usage alert doesn't work when tethering is enabled. r=ethan
2015-07-24 13:16:02 +02:00
Jessica Jong
11d3d9a5a3
Bug 1167132 - Part 15: [NetworkManager] Move network information into a separate interface (NetworkInterfaceList). r=echen
2015-07-29 02:16:00 -04:00
Jessica Jong
c0320e5ec5
Bug 1167132 - Part 11: [NetworkManager] Move network information into a separate interface (Gps). r=kanru
2015-07-29 02:12:00 -04:00
Jessica Jong
a6382e8e7e
Bug 1167132 - Part 7: [NetworkManager] Move network information into a separate interface (MobileConnection). r=echen
2015-07-22 19:32:00 -04:00
Jessica Jong
6c109160ec
Bug 1167132 - Part 6: [NetworkManager] Move network information into a separate interface (RadioInterface). r=echen
2015-07-29 02:06:00 -04:00
Jessica Jong
928b9eed74
Bug 1167132 - Part 5: [NetworkManager] Move network information into a separate interface (Tethering). r=echen
2015-07-29 02:05:00 -04:00
Jessica Jong
faef349af0
Bug 1167132 - Part 4: [NetworkManager] Move network information into a separate interface (DataCall). r=echen
2015-07-29 02:04:00 -04:00
Jessica Jong
4814a82ec4
Bug 1167132 - Part 2: [NetworkManager] Move network information into a separate interface (NetworkManager). r=echen
2015-07-29 02:02:00 -04:00
Jessica Jong
83ec6bf570
Bug 1167132 - Part 1: [NetworkManager] Move network information into a separate interface (idl). r=echen
2015-07-29 02:00:00 -04:00
Alastor Wu
9aaea1f8dd
Bug 1187195 - Remove all agents with null window. r=baku
2015-07-24 12:29:26 +08:00
Bevis Tseng
ddd1dd8283
Bug 1114937 - Part 6: Deprecate RILContentHelper. r=echen
2015-06-16 18:56:38 +08:00
"Anup Allamsetty"
6eb7e62373
Bug 1035097 - Changed the type from 'radio' to 'radioType'. r=jdm
2015-07-21 06:43:00 -04:00
Samael Wang
40be5654be
Bug 1043250
- Part 1: Update ril_worker and xpcshell test. r=btseng
...
ril_worker.js:
- Remove SMSC attribute.
- Rewrite REQUEST_GET_SMSC_ADDRESS function.
- Remove the usage of rilRequestError since it's removed in Bug 991582.
test_ril_worker_smsc_address.js:
- Add a test case for getSmscAddress.
ril_const.js:
- Add more clear comment for CALLED_PARTY_BCD_NPI array.
2015-07-20 14:43:46 +08:00
Jessica Jong
27fcd2e6a8
Bug 1185802 - Part 3: support fota apn type (tests). r=hsinyi
...
--HG--
extra : commitid : 5cipjsXtfQG
2015-07-24 10:41:29 +08:00
Jessica Jong
1b76db0a26
Bug 1185802 - Part 2: support fota apn type (impl). r=hsinyi
...
--HG--
extra : commitid : AFRfgLTfJL1
2015-07-24 10:41:15 +08:00
Jessica Jong
8bf60277ba
Bug 1185802 - Part 1: support fota apn type (idl). r=hsinyi
...
--HG--
extra : commitid : GKfkeOkpB7P
2015-07-24 10:41:04 +08:00
Alastor Wu
a5596f5a1e
Bug 1142933 - New audio channel type for system usages. r=baku
...
--HG--
extra : histedit_source : e60291f5b488d9e004698a6336456c80200751ab
2015-03-16 12:01:50 +08:00
Chris Peterson
b4513d4658
Bug 1185422 - Fix -Wtype-limits warnings-as-errors in gonk/AudioManager.cpp. r=alwu
2015-07-19 21:43:40 -07:00
Edgar Chen
99c5c20af7
Bug 1177146 - [Aries][RIL] Reply from QUERY_AVAILABLE_NETWORKS has extra strings. r=hsinyi
2015-07-07 18:47:45 +08:00
Alastor Wu
0c8e7b7e06
Bug 1170117 - Separate volume control. r=baku
2015-07-17 10:07:37 +08:00
Ryan VanderMeulen
a33e05c88c
Merge inbound to m-c. a=merge
2015-07-17 10:26:22 -04:00
Thomas Zimmermann
09dca3ba49
Bug 1171994: Separate RIL I/O interfaces, r=htsai
...
This patch separates the current interface of |RilConsumer| into
two distinct classes. |RilWorker| provides the public interface
and |RilConsumer| provides the internal implementation. Running
|RilConsumer| on a worker thread will be easier this way.
2015-07-17 12:10:01 +02:00
Jan de Mooij
bd0285d1bf
Bug 1177892 part 6 - Remove UINT_TO_JSVAL. r=evilpie
2015-07-17 11:51:54 +02:00
Edgar Chen
457a0a8ba8
Bug 1159591 - Part 11: Move MMI consts from ril_consts to telephonyService. r=aknow
2015-05-05 19:27:23 +08:00
Edgar Chen
84fc95b7b8
Bug 1159591 - Part 10: Move MMI logic from ril_worker to telephonyService (USSD). r=aknow
2015-04-30 22:45:40 +08:00
Edgar Chen
325672a649
Bug 1159591 - Part 9: Move MMI logic from ril_worker to telephonyService (Call Waiting). r=aknow
2015-04-30 19:58:16 +08:00
Edgar Chen
c418ccb595
Bug 1159591 - Part 8: Move MMI logic from ril_worker to telephonyService (Call Barring). r=aknow
2015-04-30 18:58:30 +08:00