Mike Hommey
|
bb6779efe3
|
Bug 939044 - Remove most definitions of MODULE. r=mshal
|
2013-11-19 11:47:39 +09:00 |
|
Nelson BenÃtez León
|
44b6331925
|
Bug 417952 - Open Containing Folder doesn't highlight/select file in Nautilus. r=karlt
If the File Manager DBus Interface[1] is present, use it to
launch file manager and select the file, otherwise fallback to
existing code for backwards compatibility.
[1] http://www.freedesktop.org/wiki/Specifications/file-manager-interface/
|
2013-11-12 08:31:33 -05:00 |
|
Kyle Huey
|
50ee3b3331
|
Bug 933099: Banish <windows.h> from nsGlobalWindow.cpp. r=bz
|
2013-11-05 22:16:25 +08:00 |
|
Mike Hommey
|
61124c1afc
|
Bug 921492 - Make StrictOrderingOnAppendList use actual alphabetical sorting. r=mshal,r=gps
|
2013-10-24 08:05:43 +09:00 |
|
Ehsan Akhgari
|
276e4b787c
|
Bug 919341 - Minimize the #includes in xpcom/ IDL files; r=bsmedberg
|
2013-09-23 13:29:27 -04:00 |
|
Ted Mielczarek
|
bcb2ff226d
|
bug 842728 - init Breakpad from C++ in xpcshell, remove ability to init from script. r=bholley,gps
|
2013-08-15 14:48:12 -04:00 |
|
Doug Turner
|
ffddcd248a
|
Bug 882485 - Add API keys support for Google Location Service API. r=gps, jdm, gavin. sr=brendan
|
2013-06-12 19:20:07 -07:00 |
|
Guilherme Gonçalves
|
03aff40f1b
|
Bug 874996 - Part 2 - Issue error events for geolocation provider errors. r=jdm
|
2013-06-19 12:11:06 -07:00 |
|
Kyle Machulis
|
5aa83c3e11
|
Bug 855465 - Add emacs python mode comments to moz.build files; r=gps
|
2013-04-01 11:36:59 -07:00 |
|
Kyle Machulis
|
c79ccc0693
|
Backout for changeset 03452b187c14 (Bug 855465) due to bustage on a CLOSED TREE; r=qdot
|
2013-03-29 15:12:58 -07:00 |
|
Kyle Machulis
|
a59d40f143
|
Bug 855465 - Add emacs python mode comments to moz.build files; r=gps
--HG--
extra : rebase_source : 004a756492323e1a049586e85b3be5037159df20
|
2013-03-29 13:56:18 -07:00 |
|
Gregory Szorc
|
09e7b06723
|
Bug 844654 - Part 3: Remove now empty Makefile.in files; rs=khuey
--HG--
extra : rebase_source : 8de9c7f68a953e574dda22f8c14c2b2ca60444f9
|
2013-03-19 18:49:07 -07:00 |
|
Mike Shal
|
9680b82df6
|
Bug 844654 - Part 2: Move MODULE to moz.build; rs=gps
|
2013-03-19 11:47:00 -07:00 |
|
Mike Shal
|
e9f8bc0fbd
|
Bug 818246 - Part 7: Move XPIDL_MODULE to moz.build; rs=gps
|
2013-03-11 22:00:00 -07:00 |
|
Gregory Szorc
|
8b4f575df1
|
Bug 818246 - Part 5: Move XPIDLSRCS into moz.build (manual); r=glandium
|
2013-03-12 10:20:41 -07:00 |
|
Gregory Szorc
|
7bb3ee056b
|
Bug 818246 - Part 4: Move XPIDLSRCS into moz.build (auto); rs=glandium
This is the result of running
|mach mozbuild-migrate --list XPIDLSRCS SDK_XPIDLSRCS XPIDL_SOURCES| and
reverting xpcom/sample/*.
|
2013-03-12 10:17:46 -07:00 |
|
Gregory Szorc
|
a8e6b873d4
|
Bug 784841 - Part 18ν: Convert /xpcom; f=Ms2ger rs=ted
|
2013-02-25 13:20:02 -08:00 |
|
Ehsan Akhgari
|
0d299a8bd4
|
Bug 769285 - Use separate access tokens for private and public geolocation requests. r=dougt
|
2012-12-06 21:13:15 -05:00 |
|
Josh Matthews
|
0541a0bcc3
|
Backed out changeset 7c45205a61a0 (bug 769285)
|
2012-11-28 11:51:42 -05:00 |
|
Josh Matthews
|
5b91db75ab
|
Bug 769285 - Use separate access tokens for private and public geolocation requests. r=dougt
|
2012-11-28 11:20:20 -05:00 |
|
Mook
|
265cffd198
|
bug 782549 - check if the window has device sensor listeners, instead of global listener count (r=dougt)
|
2012-10-20 21:40:56 -07:00 |
|
Landry Breuil
|
038741989a
|
Bug 785738 Part 3: use PRTime instead of int64_t where appropriate; r=ehsan
|
2012-08-30 09:10:35 +02: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 |
|
Mike Hommey
|
6173fa297f
|
Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted
|
2012-08-04 20:26:44 +02:00 |
|
Ted Mielczarek
|
287174e5d2
|
bug 761909 - crash reporter plumbing for gonk. r=bsmedberg
|
2012-07-16 19:50:52 -04:00 |
|
David Keeler
|
12645e6e65
|
bug 760625 - use the blocklist to inform click-to-play plugins. r=joshmoz,bmcbride
|
2012-07-11 08:56:34 -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 |
|
Doug Turner
|
4f84a9c167
|
Bug 759989 - Add test to ensure device sensors are shutdown when listeners are removed. r=smaug
|
2012-06-07 10:58:33 -07:00 |
|
Geoff Lankow
|
00f3a215c9
|
Bug 749930 - Replace uses of nsILocalFile with nsIFile (compiled code only); r=bsmedberg
|
2012-06-06 14:08:30 +12:00 |
|
Gervase Markham
|
ca171eec44
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Gavin Sharp
|
eefaba2ead
|
Bug 747990 followup: rev nsIXULAppInfo IID
|
2012-05-17 10:12:35 -07:00 |
|
Gavin Sharp
|
22e5cffb69
|
Bug 747990: Add ability to specify the "application name" used in the user agent in application.ini, r=bsmedberg
--HG--
extra : rebase_source : fbaaa2e94c2bbaf74e001147ec014b1ffdf3502f
|
2012-04-23 16:09:23 -04:00 |
|
Doug Turner
|
68e34b4226
|
Bug 738465 - implement device light sensor. r=smaug
|
2012-05-02 09:43:45 -07:00 |
|
Doug Turner
|
f209a96f5b
|
Bug 734855 - Rename DeviceMotion to DeviceSensors. r=mwu
--HG--
rename : dom/system/nsDeviceMotion.cpp => dom/system/nsDeviceSensors.cpp
rename : dom/system/nsDeviceMotion.h => dom/system/nsDeviceSensors.h
rename : xpcom/system/nsIDeviceMotion.idl => xpcom/system/nsIDeviceSensors.idl
|
2012-03-24 17:29:57 -07:00 |
|
Doug Turner
|
9b325a2539
|
Bug 734855 - Device Orientation - Make EnableDeviceMotion finer grain. r=mwu
|
2012-03-24 17:29:49 -07:00 |
|
Josh Dhaliwal
|
454b8453d0
|
Bug 735011 - geolocation - support enableHighAccuracy position option. r=dougt
|
2012-03-21 10:52:35 -07:00 |
|
Doug Turner
|
1707159de2
|
Bug 735330 - move device motion from dom/system to hal. r=jdm
* * *
Bug 735330 - move device motion from dom/system to hal. cocoa bits. r=jdm
* * *
Bug 735330 - move device motion from dom/system to hal. window/qt/linux bits. r=jdm
* * *
Bug 735330 - move device motion from dom/system to hal. move accuracy into sensor data. support compassneedscalibration. r=jdm
--HG--
rename : dom/system/cocoa/smslib.h => hal/cocoa/smslib.h
rename : dom/system/cocoa/smslib.mm => hal/cocoa/smslib.mm
|
2012-03-20 23:36:17 -07:00 |
|
Matt Brubeck
|
65e0765863
|
Back out bug 735330, bug 737462, bug 734854 because they broke XUL Fennec
--HG--
rename : hal/cocoa/smslib.h => dom/system/cocoa/smslib.h
rename : hal/cocoa/smslib.mm => dom/system/cocoa/smslib.mm
|
2012-03-20 16:59:24 -07:00 |
|
Doug Turner
|
72f04d8a25
|
Bug 735330 - move device motion from dom/system to hal. r=jdm
* * *
Bug 735330 - move device motion from dom/system to hal. cocoa bits. r=jdm
* * *
Bug 735330 - move device motion from dom/system to hal. window/qt/linux bits. r=jdm
* * *
Bug 735330 - move device motion from dom/system to hal. move accuracy into sensor data. support compassneedscalibration. r=jdm
--HG--
rename : dom/system/cocoa/smslib.h => hal/cocoa/smslib.h
rename : dom/system/cocoa/smslib.mm => hal/cocoa/smslib.mm
|
2012-03-20 14:46:14 -07:00 |
|
Doug Turner
|
2274638595
|
Bug 734324 - implement device motion - rotation rate and acceleration. r=jdm
|
2012-03-13 16:57:51 -07:00 |
|
Doug Turner
|
a176a07f33
|
Bug 734325 - implement compassneedscalibration event. r=jdm
|
2012-03-13 16:57:09 -07:00 |
|
Ed Morley
|
12222d2d31
|
Backout 8b74d5ae78c3 & c619bbb2951f (bug 734391), 772c994fa869 (bug 734324), fd23ff0f9dd1 (bug 734325), d1e037a9390e (bug 733653), 3a7bf79b5b2d (bug 733650) & 9d9392fce538 (bug 733652) for OS X M1 & M3 orange
|
2012-03-13 22:29:29 +00:00 |
|
Doug Turner
|
95c2676d58
|
Bug 734324 - implement device motion - rotation rate and acceleration. r=jdm
|
2012-03-13 10:00:02 -07:00 |
|
Doug Turner
|
30648d566c
|
Bug 734325 - implement compassneedscalibration event. r=jdm
|
2012-03-13 09:59:24 -07:00 |
|
Matthew Noorenberghe
|
009e32d7aa
|
Bug 726043 - Rev uuids for bug 294260 and add NS_ENSURE_ARG_POINTER. r=Mossop
--HG--
extra : rebase_source : 6dd8139b7efd86fe55668de56494d43e4726a1b6
|
2012-02-10 12:07:19 -08:00 |
|
Matthew Noorenberghe
|
ad086574ef
|
Bug 294260 - Safe Mode: Auto detect previous start-up failure and offer to start in safe mode r=bsmedberg,Mossop
--HG--
rename : toolkit/components/startup/tests/Makefile.in => toolkit/components/startup/tests/browser/Makefile.in
extra : rebase_source : 8df6b163173362ae80832eb3667e04bb817280b3
|
2011-11-07 21:20:42 -08:00 |
|
Ms2ger
|
4ab7e65f42
|
Bug 711838 - Remove the jetpack service; r=bsmedberg
Change to toolkit-makefiles.sh r=edmorley
|
2011-12-24 09:25:52 +01:00 |
|
jhorak@redhat.com
|
ad5d435d36
|
Bug 682832 - Don't ignore Gnome 3 proxy settings. r=karlt
|
2011-12-05 15:45:54 +01:00 |
|
Doug Turner
|
529ac05c54
|
Bug 669105 - Leak-until-shutdown with deviceorientation and unload listeners. r=smaug
|
2011-07-06 22:56:32 -07:00 |
|