Andrew McCreight
|
004403a545
|
Bug 814027 - Make domDoc into a COMPtr in Navigator::Vibrate. r=jlebar
|
2012-12-11 11:18:57 -08:00 |
|
Vicamo Yang
|
fcdc68fd47
|
Bug 778093 - Part 2/9: add navigator.mozCellBroadcast, r=mounir
|
2012-12-04 10:38:25 +08:00 |
|
Steven Lee
|
07644dcdb9
|
Bug 809106 - [music] Unplugging headphones while playing music should pause it. Part2-AudioChannelManager implemenentation. r=jlebar, r=sicking
|
2012-11-29 17:52:03 -05:00 |
|
Boris Zbarsky
|
2d87c88a68
|
Bug 812086 part 3. Convert internal consumers of mozHidden and mozVisibilityState to the unprefixed versions. r=smaug
|
2012-11-16 14:22:56 -08:00 |
|
Boris Zbarsky
|
24669bbc88
|
Bug 812086 part 2. Convert internal consumers of mozvisibilitychange events to the unprefixed version. r=smaug
|
2012-11-16 14:22:56 -08:00 |
|
Boris Zbarsky
|
8fa9f91ba7
|
Bug 807222 part 2. Condition MozTimeManager classinfo so we don't stick it on the global in builds that don't ship the xpt for it. r=jlebar
|
2012-11-05 10:20:03 -05:00 |
|
Nikhil Marathe
|
17ccba841b
|
Bug 804174 - Inline IsCallerTrustedForRead with IsCallerChrome. r=mccr8
|
2012-10-25 16:10:53 -07:00 |
|
Dão Gottwald
|
fb68ca7461
|
Bug 800157 - Make User Agent overrides affect navigator.userAgent in addition to the HTTP header. r=bz
--HG--
extra : rebase_source : dd856c03a45e9d95866fb5a95e568ae3cce67521
|
2012-10-12 00:56:13 +02:00 |
|
Randell Jesup
|
9b290a3be9
|
Bug 797979: Make media.peerconnection.enabled turn on getUserMedia as well r=smaug
|
2012-10-04 19:12:01 -04:00 |
|
Steven Lee
|
1f252a9430
|
Bug 783500 - Hook up IdleAPI to permissions manager, r=jlebar
|
2012-10-02 10:08:02 +01:00 |
|
Andrea Marchesini
|
b97bcdcaf5
|
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 |
|
Anant Narayanan
|
9fe5825217
|
Bug 752352: Implement getUserMediaDevices for privileged chrome code; r=smaug, r=jesup
|
2012-09-20 12:54:00 -07:00 |
|
Mike Habicher
|
e695772791
|
Bug 776934 - Add permissions check to camera API. r=jlebar
|
2012-09-21 06:32:18 -04:00 |
|
Ehsan Akhgari
|
6bfbbdb0fd
|
Bug 791372 - Navigator::MozIsLocallyAvailable doesn't associate its channel with a load group; r=bzbarsky
|
2012-09-17 11:24:38 -04:00 |
|
Steven Lee
|
5ac92804ab
|
Bug 791652: Navigator::GetMozTime doesn't always set its outparam when returning success, r=jlebar
|
2012-09-17 08:59:00 -04:00 |
|
Steven Lee
|
1a3d6cea38
|
Bug 714358: Time manager implementation. r=jlebar
|
2012-09-11 02:05:00 -04:00 |
|
Randell Jesup
|
eedf93a21d
|
Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg
|
2012-09-01 22:35:17 -04:00 |
|
Yoshi Huang
|
a1a91d777b
|
Bug 785942 - Part 2: Update Impl. r=smaug
|
2012-08-27 14:34:10 -03:00 |
|
Vicamo Yang
|
eb5c8277b8
|
Bug 579517 follow-up: Remove NSPR types that crept in
|
2012-08-27 23:31:35 +08:00 |
|
Kyle Machulis
|
34e3fb0332
|
Bug 779378: B2G Voicemail: Hook up to permissions manager; r=gwagner
|
2012-08-23 16:31:02 -07:00 |
|
Ben Turner
|
0727b7098c
|
Bug 784726 - 'Remove old IPC::URI'. r=cjones+khuey.
--HG--
rename : ipc/glue/IPCSerializableParams.ipdlh => ipc/glue/InputStreamParams.ipdlh
extra : transplant_source : %A6%BC%8B%8D%3A_%7Df%2B%FE%AA%94%81%AB%CAW%15K%A7%03
|
2012-08-23 12:33:46 -07:00 |
|
Vicamo Yang
|
2f8e84e3ed
|
Bug 707659 - Part 1: DOM implementation, r=jlebar
|
2012-08-23 01:30:27 +08:00 |
|
Ehsan Akhgari
|
0fd9123eac
|
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 |
|
Gregor Wagner
|
a0677230c5
|
Bug 779379 - B2G MobileConnection: Hook up to permissions manager. r=jlebar
|
2012-08-16 17:42:26 -07:00 |
|
Kan-Ru Chen (陳侃如)
|
f2d58c0e08
|
Bug 781353 - Hook up "power" to Permission Manager. r=jlebar
|
2012-08-11 19:40:43 +08:00 |
|
Phil Ringnalda
|
cf09173698
|
Backout 5439489dc320, 983f76488e59, 7a92558a8dec (Bug 714358) for debug build assertions and leaks
|
2012-08-07 22:18:27 -07:00 |
|
Steven Lee
|
230139f702
|
Bug 714358: Time manager implementation. r=jlebar
|
2012-08-07 19:11:00 -04:00 |
|
Justin Lebar
|
acdcc52b67
|
Bug 780507 - Expose the idle service only to certified apps (and chrome). r=mounir
--HG--
extra : rebase_source : e4dfcb9b3416ee4ada8e4a6fd2e7f5b37b722bfe
|
2012-08-06 12:10:58 -04:00 |
|
Doug Turner
|
abda96b8c6
|
Bug 777084 - Stop returning arrays from DeviceStorage.getDeviceStorage(). r=sicking
|
2012-08-01 23:32:11 -07:00 |
|
Doug Turner
|
95b32b3331
|
Bug 763976 - Add onchange notifications to DeviceStorage. r=khuey
|
2012-08-01 23:29:34 -07:00 |
|
Mike Habicher
|
d753b0fbff
|
Bug 740997 - ICS camera support, r=jst,gal,roc
|
2012-07-30 17:59:05 -04:00 |
|
Aryeh Gregor
|
e806eeab4f
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Dão Gottwald
|
2a5d0a9d85
|
Bug 776376 - Hardcode navigator.productSub to 20100101 for backward compatibility. r=bz sr=jst
|
2012-07-27 14:09:59 +02:00 |
|
Justin Lebar
|
a863832283
|
Bug 772987 - Part 2: Use Static{Auto,Ref}Ptr where appropriate. r=mounir
--HG--
extra : rebase_source : 4e3e72ba53cd0177160f80231eebeb4972119eec
|
2012-07-26 15:33:45 -04:00 |
|
Gene Lian
|
9a83d5e902
|
Bug 775032 - System Message Handler - Fix B2G installation bug (MOZ_SYS_MSG is not defined correctly). r=vingtetun,khuey
|
2012-07-23 14:53:08 +08:00 |
|
Marshall Culpepper
|
96b716a19a
|
Bug 736710 - Part 3: Voicemail DOM implementation classes. r=smaug
|
2012-07-19 11:27:19 +08:00 |
|
Mounir Lamouri
|
9bc8f42e69
|
Bug 769571 - Unprefix Battery API. r=sicking sr=smaug
--HG--
rename : dom/battery/nsIDOMNavigatorBattery.idl => dom/battery/nsINavigatorBattery.idl
|
2012-07-05 12:05:09 +02:00 |
|
Mounir Lamouri
|
7d2529f029
|
Bug 769571 - Unprefix Vibrator API. r=jlebar sr=smaug
|
2012-07-05 12:04:45 +02:00 |
|
Fabrice Desré
|
a3978ca0ab
|
Bug 755245 - Implement System Message Handler : Part 3, DOM implementation [r=vingtetun,mounir]
|
2012-07-02 17:16:55 -07:00 |
|
Bonnie Surender
|
e360fa128a
|
Fixing bug 715041. Add support for Idle API. r=bent, jst
|
2012-06-29 01:32:21 -07:00 |
|
Ryan VanderMeulen
|
891e38e528
|
Revert c39d36167b99 due to a horribly munged backout.
|
2012-06-10 19:44:50 -04:00 |
|
Ryan VanderMeulen
|
f497d31a0a
|
Backout the bug 754202 backout due to orange.
|
2012-06-10 19:37:47 -04:00 |
|
Anant Narayanan
|
138c405799
|
Bug 738528: Android still image support for getUserMedia r=sicking, r=jesup (plus bustage fix r=jesup)
|
2012-06-05 08:53:00 -04:00 |
|
Anant Narayanan
|
50bc4e6656
|
Backout e8364adb4fd8, build bustage on Android (Bug 738528)
|
2012-06-08 17:17:52 -07:00 |
|
Anant Narayanan
|
6884bfc08d
|
Bug 738528: Android still image support for getUserMedia; r=sicking, r=jesup
|
2012-06-05 08:53:00 -07:00 |
|
Anant Narayanan
|
beefeb5f37
|
Bug 752353: DOM bindings for getUserMedia; r=jst
--HG--
rename : content/media/nsIDOMMediaStream.idl => dom/media/nsIDOMMediaStream.idl
|
2012-06-03 00:35:15 -07:00 |
|
Ms2ger
|
1d02a1ece1
|
Bug 712910 - Use stdint types in HAL; r=cjones
|
2012-05-25 09:18:30 +02:00 |
|
Kyle Machulis
|
dc57c39391
|
Bug 742044 - Create BluetoothManager object for managing multiple adapters and firmware loading; r=bent
|
2012-05-23 21:02:23 -07:00 |
|
Kyle Machulis
|
63d6921b7a
|
Backing out Bug 742044 - Bustage on B2G
|
2012-05-23 18:27:53 -07:00 |
|
Kyle Machulis
|
2c0c44fa04
|
Bug 742044 - Create BluetoothManager object for managing multiple adapters and firmware loading; r=bent
|
2012-05-23 18:21:05 -07:00 |
|