Граф коммитов

1708 Коммитов

Автор SHA1 Сообщение Дата
Ben Tian 5f3ae35ee6 Bug 948337 - create BluetoothHfpManagerBase for audio manager access 2014-01-13 13:58:43 +08:00
Garner Lee 43e9e7bade Bug 950269 - Rename tech to techList in techDiscovered (Gecko side). r=yoshi 2014-01-09 11:34:30 -08:00
Sumit Agrawal 46da777f0e Bug 958354 - OS.Constants.Path should expose UAppData. r=Yoric 2014-01-13 08:45:20 -05:00
Vicamo Yang 94680ab77f Bug 934125 - 3.b/3: fix alignment. r=gene 2014-01-13 10:44:56 +08:00
Vicamo Yang 2d044167e2 Bug 934125 - 3.a/3: correct ril_worker 'RIL[FOO] = function FOO()' as well. r=gene
sed -i dom/system/gonk/ril_worker.js -e '/^RIL\[\w\+\] =/ {N; s/RIL\[\(\w\+\)\] =\s*function \w\+(/RIL[\1] = function(/}'
2014-01-13 10:44:52 +08:00
Vicamo Yang de1ca8c802 Bug 934125 - 2.b/3: fix alignment. r=gene
for f in `git show --name-only | grep ^dom/`; do
  [ -n "`grep -e '\w\+: function([^)]*\$' $f`" ] && echo $f;
done | xargs sh -c 'rvim "$@" </dev/tty' asdf
2014-01-13 10:44:44 +08:00
Vicamo Yang cb6b4fc470 Bug 934125 - 2.a/3: s/\(\w\+\): function \(\w\+\)(/\1: function(/ . r=gene
RILDIRS="dom/cellbroadcast/ dom/icc/ dom/mobilemessage/ dom/network/ dom/telephony/ dom/voicemail/ dom/system/gonk/";
for f in `find $RILDIRS -type f -name \*.js -o -name \*.jsm`; do
  sed -i $f -e '/\w\+:/ {N; s/\(\w\+\):\s*function \(\w\+\)(/\1: function(/g}';
done
grep -nRe '\w\+: function \w\+(' $RILDIRS
2014-01-13 10:44:40 +08:00
Vicamo Yang 6d86926c0c Bug 934125 - 1/3: s/function \+(/function(/ . r=gene
RILDIRS="dom/cellbroadcast/ dom/icc/ dom/mobilemessage/ dom/network/ dom/telephony/ dom/voicemail/ dom/system/gonk/";
for f in `find $RILDIRS -type f -name \*.js -o -name \*.jsm`; do
  sed -i $f -e 's/function \+(/function(/';
done
2014-01-13 10:44:33 +08:00
Ryan VanderMeulen a87352cc59 Merge inbound to m-c. 2014-01-10 14:46:40 -05:00
Henry Chang e206b964d5 Bug 811635 - Part 4: Wifi Direct core implementation. r=vchang 2014-01-14 18:23:42 +08:00
Kai-Zhen Li a5f9677c32 Bug 946257 - Update NetUtils and WifiUtils to support KK. r=fabrice, vchang. 2013-12-10 15:10:46 +08:00
Clayton Hughes 9d5f5047d7 Bug 931424 - Fix AutoMounter to use AutoRestore instead of AutoBool. r=dhylands 2013-11-01 18:02:31 -07:00
Siddartha Pothapragada 68226de907 Bug 933093 - Part 2: Add 'sendFile' implementation to Chrome process. r=yoshi
The chrome process is the arbitrator / mediator between the content process that issued the nfc 'sendFile' operation and the system-process (content) that is responsible for performing handover to an alternate carrier(AC).

The chrome process notifies the system process through a 'nfc-manager-send-file' system-message to initiate the handover process.

The system-process subsequently handovers the data to alternate carrier's (AC's : BT / WiFi) 'sendFile' interface.
2013-12-14 00:57:11 -08:00
Guilherme Gonçalves 5b1fa81c3e Bug 732923 - Make watchPosition timeouts adhere to spec. r=jdm
This also disables a couple of tests that depend on the network
provider on Android. These tests were passing by accident before
this patch (and started failing afterwards), and were never meant
to run on Android anyway.
2014-01-08 16:04:37 -05:00
Guilherme Gonçalves 390ccfc5fe Bug 732923 - CoreLocation provider shouldn't implement nsIGeolocationUpdate. r=jdm 2014-01-08 16:04:21 -05:00
Jessica Jong 72d81106d9 Bug 952371 - Part 3: ril implementation - [DSDS] mozMobileconnection.lastKnownNetwork and .lastKnownHomeNetwork aren't working. r=hsinyi 2014-01-08 18:54:34 +08:00
Andrea Marchesini 62bd00021f Bug 952079 - Porting nsIDOMWakeLock to WebIDL, r=smaug 2014-01-07 13:16:07 +01:00
Masatoshi Kimura 478003f252 Bug 956494 - Ensure dictionary values are constructed before firing DeviceMotionEvent. r=smaug 2014-01-05 17:36:19 +09:00
Wes Kocher b26cd49023 Merge m-c to inbound 2014-01-09 17:05:12 -08:00
Daniel Holbert 17ae59067d Bug 958203: Move logging macros from OpenFileFinder.h to its .cpp file, to fix 'redefined' build warnings in AutoMounter.cpp. r=dhylands 2014-01-09 13:01:43 -08:00
Ehsan Akhgari 1b83407ce9 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
Shawn Ku 6da631db40 Bug 924740 Part2: Test Cases Part - [fugu]It throws exception when run ICCIOHelper.processICCIOGetResponse for USIM card. v2. r=yoshi. 2014-01-03 14:39:30 +08:00
Shawn Ku ce483bb4d5 Bug 924740 Part1: RIL patch - [fugu]It throws exception when run ICCIOHelper.processICCIOGetResponse for USIM card. v2. r=yoshi. 2014-01-02 11:14:40 +08:00
Szu-Yu Chen [:aknow] 905575357b Bug 951030 - Radio state rollback. r=hsinyi 2014-01-02 10:39:26 -05:00
Masatoshi Kimura 40c3a61d7b Bug 876238 - Convert DeviceAcceleration and DeviceRotationRate to WebIDL bindings. r=smaug 2014-01-02 07:52:47 +09:00
Shawn Ku 21903cb6b9 Bug 947110 - Part2: Add test cases. B2G RIL: Add support for decoding FCP Template in BerTlvHelper. v2. r=yoshi. 2013-12-23 13:55:29 +08:00
Shawn Ku 47254d3f91 Bug 947110 - Part1: RIL patch. B2G RIL: Add support for decoding FCP Template in BerTlvHelper. v5. r=yoshi. 2013-12-23 10:35:39 +08:00
Jessica Jong 3e587e9184 Bug 943191 - Part 2: Attach/detach data registration on demand (for fugu). r=hsinyi 2013-12-20 15:56:35 -05:00
Jessica Jong 80db7abfcd Bug 943191 - Part 1: Move dsds data setup handling to RadioInterfaceLayer. r=hsinyi 2013-12-20 15:56:35 -05:00
Jessica Jong 81df5dcb28 Bug 951958 - B2G RIL: set/get preferred network type error message is not set accordingly. r=hsinyi 2013-12-19 11:07:14 -05:00
Bevis Tseng 44ec45f6cc Bug 792798 - B2G SMS: Develop test cases for Message Class 2. r=vyang 2013-12-17 14:55:46 +08:00
Gene Lian 9cc4dfca95 Bug 901457 - [sms][mms] We need a property for the "sent" timestamp (part 2, implementation). r=vicamo 2013-09-23 10:31:32 +08:00
Ryan VanderMeulen 5813178548 Merge m-c to inbound. 2013-12-16 09:05:12 -05:00
Dimi Lee f445874901 Bug 947100 - B2G NFC: enable/disable NFC worker at runtime. r=yoshi 2013-12-11 14:04:27 +08:00
Szu-Yu Chen [:aknow] 0aa5a840fa Bug 949876 - Fix setRadioEnabled queueing method. r=hsinyi 2013-12-13 11:46:23 -05:00
Bevis Tseng 9212f60183 Bug 949318 - B2G SMS: Class 2 SMS is not working after ICCRecordHelper.readSMS() was refactored into SimRecordHelper. r=vyang 2013-12-12 15:59:34 +08:00
Bevis Tseng d0079ab03b Bug 768441 - Part 2: Test Case to Verify the Access of EF_MWIS. r=vyang 2013-12-10 19:24:27 +08:00
Bevis Tseng 9abce82c28 Bug 768441 - Part 1: Support Stored Message Waiting Indicators. r=vyang 2013-12-06 17:35:13 +08:00
Ryan VanderMeulen 12e918f111 Backed out changeset ac002daf081b (bug 947100) for B2G mochitest-3 orange. 2013-12-11 14:05:37 -05:00
Dimi Lee 0316a3ed9f Bug 947100 - B2G NFC: enable/disable NFC worker at runtime. r=yoshi 2013-12-11 14:04:27 +08:00
Jessica Jong f417ff4834 Bug 944225 - Part 3: Add set/getPreferredNetworkType() API (ril). r=hsinyi 2013-12-11 11:15:03 +08:00
Bevis Tseng a27ca0264c Bug 940259 - Test Case for the support of CDMA WAP Push. r=gene
--HG--
extra : rebase_source : 5edf826ec7e8e54050efb32d2488890a69594fab
2013-11-26 18:34:14 +08:00
Bevis Tseng 69a53bbd1e Bug 940259 - B2G SMS: Support Wap Push over CDMA SMS. r=gene
--HG--
extra : rebase_source : b6b41223a0facd9f0f6b226321b45ab52bfe7792
2013-11-26 18:28:53 +08:00
Carsten "Tomcat" Book cb51649b35 merge b2g-inbound to mozilla-central 2013-12-09 09:32:02 +01:00
Bevis Tseng 7d26298afe Bug 946081 - [B2G][SMS] Store MWI Message Into Message Inbox if MWI is Store Message Type. r=vyang 2013-12-06 11:18:17 +08:00
Birunthan Mohanathas 0d3a767ee1 Bug 798033 - Remove 'using namespace' from dom/ headers. r=echou 2013-12-08 21:53:11 -05:00
Bevis Tseng 0c55019b99 Bug 946079 - Part 1: Treat Return Call SMS Message as Replaced Type Message instead of MWI message. r=vyang 2013-12-05 14:24:31 +08:00
Arno Puder 6f414242d7 Bug 933585 - NFC Worker changes. r=yoshi 2013-11-11 18:05:01 -08:00
Trevor Saunders d43c55ca0e bug 949821 - use MOZ_UTF16 more and NS_LITERAL_STRING less r=froydnj 2013-12-12 20:50:01 -05:00
Albert Crespell 33debf594b Bug 858005 - Part 2: Netd integration. r=vchang 2013-05-24 11:28:20 +02:00
Edgar Chen 2d0f0d2be7 Bug 946165 - Send REQUEST_REPORT_STK_SERVICE_IS_RUNNING after iccid is ready. r=allstars.chh 2013-12-06 13:42:36 +08:00
Bevis Tseng a22a39ddaf Bug 943749 - B2G SMS: Support Class 2 SMS received and stored in SIM. r=vyang 2013-12-04 18:52:31 +08:00
Yoshi Huang 84096696a0 Bug 944725 - Part 2: add xpcshell-tests for testing returned errorMsg. r=vicamo 2013-12-03 17:02:58 +08:00
Yoshi Huang edb8346035 Bug 944725 - Part 1: Unify the errorMsg for icc.read/updateContacts. r=vicamo 2013-12-03 16:25:05 +08:00
Alan Huang e0f52eb17b Bug 931456 - Initialize the chrome process pid information while we are constructing OpenFileFinder. r=dhylands 2013-12-04 10:24:36 +08:00
Hsin-Yi Tsai 2267b9c6d9 Bug 944589 - [Voice Channel][Dialer][Airplane Mode] If you switch to airplane mode when talking, voice channel will not recover. r=vicamo 2013-12-02 18:51:54 +08:00
Shawn Ku c4af1a5c1f Bug 946062 - Disable nsIRadioInterfaceLayer in AudioManager.cpp for fixing flatfish build break. r=mchen
--HG--
extra : rebase_source : 75726539cf0f16bebaf6e83ad23452010d6f545f
2013-12-04 14:57:40 +08:00
Georgia Wang 837886e302 Bug 935401 - Part 2: Modify xpcshell test for SimRecordHelper. r=yoshi
--HG--
extra : rebase_source : afa4f4f7cc8b05820a27473ff57c954de63b9dc8
2013-11-12 17:28:48 +08:00
Georgia Wang a484cf9250 Bug 935401 - Part 1: Add SimRecordHelper in ril_worker. r=yoshi
--HG--
extra : rebase_source : 8e70ea07749813f645da4b1ce28b8c4a67d7e770
2013-11-12 16:33:45 +08:00
Siddartha Pothapragada b11a743d9e Bug 933136 - Part 2: Add support to notify 'onpeerready' and 'onpeerlost' events from Chrome process. r=yoshi
Add two new P2P IPC messages 'CheckP2PRegistration' and 'NotifyUserAcceptedP2P'
to establish User Communication on P2P UI from content process to chrome process. These IPC messages are needed to support basic PeerToPeer use cases.

--HG--
extra : rebase_source : 0c0815e9ee873fe017bb6bbc91f3505891533769
2013-12-03 13:22:21 -08:00
Carsten "Tomcat" Book 9fb2389abd Backed out changeset deaef09b17c1 (bug 944725) for marionette web-api bustage on a CLOSED TREE 2013-12-04 10:06:32 +01:00
Carsten "Tomcat" Book 1e2e5432f7 Backed out changeset 82345b162c51 (bug 944725) for marionette web-api bustage on a CLOSED TREE 2013-12-04 10:06:14 +01:00
Yoshi Huang 9414fd6fa8 Bug 944725 - Part 2: add xpcshell-tests for testing errorMsg. r=vicamo 2013-12-03 16:26:32 +08:00
Yoshi Huang 2a4410e955 Bug 944725 - Part 1: Unify the errorMsg for icc.read/updateContacts. r=vicamo 2013-12-03 16:25:05 +08:00
Alan Huang d72d438775 Bug 841660 - Part 2: Implement format interface for volume-based device storage, r=dhylands 2013-12-03 17:32:56 +08:00
Ryan VanderMeulen 3b6bfb5ce8 Backed out 5 changesets (bug 811635) for B2G mochitest-8 orange.
Backed out changeset ad72f0b9e16a (bug 811635)
Backed out changeset 4acc0f028076 (bug 811635)
Backed out changeset b695cdc91edc (bug 811635)
Backed out changeset 6c9ca70f582d (bug 811635)
Backed out changeset 0338e84d99a7 (bug 811635)
2013-12-03 10:06:59 -05:00
Alan Huang 71683564c2 Bug 931456 - Check whether b2g and its descendant have opened files only. r=dhylands 2013-12-03 15:35:03 +08:00
Henry Chang 8ba8195b75 Bug 811635 - Part 4: Wifi Direct core implementation. r=vchang 2013-11-28 16:02:44 +08:00
Edgar Chen 4dc68e6d3a Bug 942096 - Extend stk system message to support multiple sim. r=hsinyi 2013-11-25 18:10:34 +08:00
Georgia Wang 141cbf3ec3 Bug 935402 - Part 2: Modify xpcshell test for EF_PBR. r=yoshi 2013-11-18 15:06:58 +08:00
Georgia Wang 1f8cf1eb83 Bug 935402 - Part 1: Cache EF_PBR field. r=yoshi 2013-11-18 15:04:22 +08:00
Shawn Ku 0154de919d Bug 931722 - Part 2: Extra mute request to RIL at AudioManager. r=mchen 2013-11-27 15:46:27 +08:00
Shawn Ku cc7e21313f Bug 931722 - Part 1: RIL related code change. r=hsinyi 2013-11-27 15:45:31 +08:00
Alan Huang 85ad595995 Bug 841660 - Implement format interface for volume-based device storage, r=dhylands 2013-09-06 14:11:58 +08:00
Georgia Wang a2a0264953 Bug 908554 - Part3: Add STK Set Up Menu xpcshell test. r=yoshi 2013-11-08 11:04:10 +08:00
Georgia Wang adec9e0aae Bug 908554 - Part2: STK Support Next Action Indicator in RIL r=yoshi. 2013-11-08 10:47:48 +08:00
Georgia Wang 2ca800758f Bug 938466 - Part3: Modify xpcshell BIP test case. r=yoshi 2013-11-14 11:31:50 +08:00
Georgia Wang b69df0a580 Bug 938466 - Part2: modify STK BIP command const. r=yoshi 2013-11-14 11:18:57 +08:00
Edgar Chen 0a8d9b2d6f Bug 944234 - Same message type with different client id should be treated as a different message. r=hsinyi 2013-11-28 18:10:38 +08:00
Edgar Chen c6fa2f00ea Bug 944250 - Remove RILQUIRKS_MODEM_DEFAULTS_TO_EMERGENCY_MODE and correct marionette tests. r=hsinyi 2013-11-28 15:21:02 +08:00
Yoshi Huang 5e337e9ab6 Bug 943234 - Part 1: return mozContact in updateContact. r=vicamo
From 237b1d77da6e1470979dfc422e3f2e2f30066b43 Mon Sep 17 00:00:00 2001
---
 dom/system/gonk/RILContentHelper.js |   29 ++++++++++++++++++++++++++++-
 dom/system/gonk/ril_worker.js       |    7 +++++--
 2 files changed, 33 insertions(+), 3 deletions(-)
2013-11-28 17:50:01 +08:00
Carsten "Tomcat" Book c6acc4f6b9 Backed out changeset 8ef36d96a366 (bug 938466) for marionette webapi bustage on a CLOSED TREE 2013-11-27 09:23:31 +01:00
Carsten "Tomcat" Book f9e32f8b7e Backed out changeset abf315caa163 (bug 938466) for marionette webapi bustage on a CLOSED TREE 2013-11-27 09:23:22 +01:00
Georgia Wang 5e3c40a372 Bug 938466 - Part 3: Modify xpcshell BIP test case. r=yoshi 2013-11-14 11:31:50 +08:00
Georgia Wang 0e22770e98 Bug 938466 - Part 2: Modify STK BIP command const. r=yoshi 2013-11-14 11:18:57 +08:00
Georgia Wang ec2393a760 Bug 824611 - Part 2: Modify xpcshell for ICCPDUHelper. r=yoshi 2013-11-11 14:39:00 +08:00
Georgia Wang a7e8a7d504 Bug 824611 - Part 1: Add ICC PDU Helper. r=yoshi 2013-11-11 14:28:20 +08:00
Wes Kocher 9d54e7a157 Merge b2g-inbound to m-c 2013-11-26 19:34:07 -06:00
Szu-Yu Chen [:aknow] 06215eeead Bug 942731 - Fix unexpected reverse. r=vicamo 2013-11-26 13:58:41 -05:00
Szu-Yu Chen [:aknow] 4ccebd497e Bug 942218 - Fix isRadioChanging. r=hsinyi 2013-11-26 13:58:28 -05:00
Ehsan Akhgari ab9a29d97c Bug 942633 - Build more dom/ code in unified mode; r=bzbarsky
--HG--
extra : rebase_source : 7d4187e2286cbfc278f463317043a280ea227e9d
2013-11-26 11:38:52 -05:00
Ben Tian f30b8763ea Bug 921991 - B2G BT: support multiple sim cards, r=echou, r=mrbkap 2013-11-26 14:11:06 +08:00
David Rajchenbach-Teller f9053f7265 Bug 941565 - Fix OS.Constants.Path.libxul on Android. r=glandium 2013-11-25 09:32:29 -05:00
Ryan VanderMeulen 6789e60ca8 Merge b-i to m-c. 2013-11-22 15:35:31 -05:00
Jessica Jong a7463d7ec1 Bug 926372 - B2G DSDS: setup data call. r=hsinyi 2013-11-22 10:16:31 -05:00
Ryan VanderMeulen 7c4875ed06 Merge m-c to fx-team. 2013-11-21 15:55:03 -05:00
Szu-Yu Chen [:aknow] 5b8c158332 Bug 856553 - Part 4: Add setRadioEnabled API (ril). r=hsinyi 2013-11-21 09:09:14 -05:00
Szu-Yu Chen [:aknow] c17a6f573b Bug 935537 - Fix powerOffRadioSafely. r=hsinyi 2013-11-20 11:14:43 -05:00
Ben Kelly b74dc40938 Bug 924565: Part 1: Declare nsIObserver QI in DOMRequestHelper child classes. r=fabrice 2013-11-20 13:33:10 +08:00
Chris Kitching f7dde79803 Bug 913985: Part 6 - Remove redundant AndroidBridge::Bridge() checks. r=kats 2013-11-12 10:41:01 -08:00