Justin Lebar
|
08851b784b
|
Bug 836654 - Part 10: Don't acquire the CPU wake lock in the alarm service any longer. r=cjones
We've removed the event that the AlarmService was listening to in order
to find out when we could drop the lock!
|
2013-02-14 15:41:30 -05:00 |
|
Reuben Morais
|
6c3aeb7360
|
Bug 836513 - Support multiple object stores in IndexedDBHelper.jsm. r=gwagner
|
2013-01-30 18:03:46 -08:00 |
|
Gene Lian
|
aaec3a9556
|
Bug 821671 - Check alarm API parameters in the parent (part 3, Alarm API). r=sicking
|
2012-12-22 19:47:23 +08:00 |
|
Gene Lian
|
0f0ee97b92
|
Bug 821633 - Alarm API - .getAll() need to wrap the objects respecting to the content window (part 2, Alarm API). r=vivien
|
2012-12-14 20:04:04 +08:00 |
|
Gene Lian
|
6523951e3d
|
Bug 813994 - Alarm API - Need additional security checks for the "alarms" permission. r=bent
|
2012-11-28 19:13:58 +08:00 |
|
Gene Lian
|
bb11b7ccf8
|
Bug 796255 - Alarm doesn’t ring on time if the app is killed and phone is allowed to suspend (part 2). r=vivien,jlebar
|
2012-11-01 10:30:18 +08:00 |
|
Kyle Huey
|
1482122303
|
Bug 798491: Add an option to stick all chrome JSMs/JS components in the same compartment. r=mrbkap,philikon
--HG--
extra : rebase_source : 98337b6a8c07d05e8c961a452dd05a7d75c3c60b
|
2012-10-31 09:13:28 -07:00 |
|
Vicamo Yang
|
8297cdabd6
|
Backout 67cb43bb8865: Breaks B2G Marionette
|
2012-10-31 16:35:11 +08:00 |
|
Kyle Huey
|
bdf47895bb
|
Bug 798491: Add an option to stick all chrome JSMs/JS components in the same compartment. r=mrbkap,philikon
|
2012-10-30 12:28:11 -07:00 |
|
Ed Morley
|
777eed8444
|
Backout a145ded68994, e0cf397089ec & 1545e91c658e (bug 798491) for bustage on a CLOSED TREE
|
2012-10-30 17:02:31 +00:00 |
|
Kyle Huey
|
aa1997a51a
|
Bug 798491: Add an option to stick all chrome JSMs/JS components in the same compartment. r=mrbkap,philikon
|
2012-10-30 08:26:12 -07:00 |
|
Gene Lian
|
7412405399
|
Bug 801096 - [settings] Set-Automatically for time should take effect *immediately* instead of waiting on next NITZ coming (part 1). r=jlebar
|
2012-10-23 15:15:43 +08:00 |
|
Bobby Holley
|
9f03f90fb7
|
Bug 792036 - Automated fixups. r=mccr8
find /files/mozilla/build/d/_tests/testing/mochitest/tests/ | egrep "\.(xhtml|html|xml|js)$" | grep -v SimpleTest | grep -vi mochikit | grep -v simpleThread | grep -v test_ipc_messagemanager_blob.html | grep -v "indexedDB/test" | xargs grep -l Components | xargs grep -L enablePrivilege | perl -pe 's#.*mochitest/tests/##' | xargs perl -p -i.bakkk -e 's/Components\.interfaces(\s|;|\.|\[)/SpecialPowers\.Ci$1/g, s/SpecialPowers\.wrap\(Components\)\.(.)(lasses|tils|nterfaces|esults)/SpecialPowers.C$1/g, s/(?<![\.a-zA-Z])Components/SpecialPowers\.Components/g, s/window\.Components/window\.SpecialPowers\.Components/g'
|
2012-09-24 14:46:29 +02:00 |
|
Ms2ger
|
ee0af53baa
|
Bug 792343 - Enable FAIL_ON_WARNINGS in some more of dom/ (first batch); r=mounir
|
2012-09-20 09:55:36 +02:00 |
|
Gene Lian
|
81489a0ca1
|
Bug 790497 - Alarm API - Adjust firing time for "ignoreTimezone" alarms when timezone is reset. r=cjones
|
2012-09-12 18:15:15 +08:00 |
|
Philipp von Weitershausen
|
5801c8b2ab
|
Bug 776825 - Separate message managers into senders and broadcasters. r=smaug
--HG--
rename : content/base/public/nsIFrameMessageManager.idl => content/base/public/nsIMessageManager.idl
|
2012-08-27 11:13:02 -03:00 |
|
Nathan Froyd
|
2d595e5d44
|
Bug 783357 - part 1: add XPIDL_FLAGS to make idl dependencies more explicit; r=khuey
|
2012-08-24 16:01:30 -04:00 |
|
Ehsan Akhgari
|
57ac5ddc72
|
Merge the landing of bug 579517 to mozilla-inbound
|
2012-08-22 12:12:15 -04:00 |
|
Gene Lian
|
99a63b91d5
|
Bug 777226 - Alarm API - If an alarm cannot be fired when the device shuts down, it should be fired when powering up. r=vivien
|
2012-08-16 10:46:40 +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 |
|
Gene Lian
|
e467ccc6c5
|
Bug 782772 - Support the href property in web activities. r=vivien,fabrice
|
2012-08-15 10:40:12 +08:00 |
|
Justin Lebar
|
0d4822afe2
|
Bug 777135 - Part 2: Stop using nsDOMWindowUtils::GetIsApp and friends, and instead use the relevant methods on the principal. r=mounir
--HG--
extra : rebase_source : fa8a153a1edc8f64b230b67f121ba5eaaf1098e6
|
2012-08-13 12:58: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 |
|
Gene Lian
|
6e59102b88
|
Bug 777224 - Alarm API - .getAll() and .remove() can only interact with alarms scheduled by the same app. r=vivien
|
2012-08-01 13:58:49 +08:00 |
|
Gene Lian
|
abe5408e36
|
Bug 776785 - Alarm API - hal::SetAlarm takes |long|s, but should instead take PRInt32s. r=jlebar
|
2012-07-31 10:52:57 +08:00 |
|
Gene Lian
|
c622ec1848
|
Bug 777228 - Alarm API - The back-end needs to remove alarms that have been fired from DB, so that .getAll() won't return them. r=vivien
|
2012-07-30 19:17:35 +08:00 |
|
Gene Lian
|
da0f4c27fc
|
Bug 777207 - Alarm API - AlarmService should use "activities" or "system messages", or not broadcast information to all content processes. r=cjones
|
2012-07-26 09:59:20 +08: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
|
86ec12b5da
|
Bug 772369 - Alarm API (Follow-Up Fix for System Message Integration). r=fabrice
|
2012-07-17 18:38:24 +08:00 |
|
Mounir Lamouri
|
c4aa2e4999
|
Bug 775824 - Use the new Permission Manager API in AlarmManager. r=sicking
|
2012-07-20 18:08:18 -07:00 |
|
Gene Lian
|
6ad7788052
|
Bug 773596 - Alarm API (make up missing sendAsyncMessage() for some early-return if-blocks). r=vivien
|
2012-07-13 20:01:43 +08:00 |
|
Nathan Froyd
|
a7eb97f896
|
Bug 370750 - consolidate mochitest files installation; r=glandium
With assistance on the patch from Ms2ger, Waldo, and Mossop.
|
2012-07-03 16:49:02 -04:00 |
|
Gene Lian
|
e0e46d3e97
|
Bug 749551 - Alarm API (System Message Integration). r=vivien
|
2012-07-05 15:53:08 +08:00 |
|
Gene Lian
|
615daa27f7
|
Bug 749551 - Alarm API (AlarmsManager and AlarmService). r=vivien
|
2012-06-22 15:39:07 +08:00 |
|
Gene Lian
|
978b900128
|
Bug 749551 - Alarm API (AlarmDB). r=vivien
|
2012-06-22 15:38:59 +08:00 |
|
Gene Lian
|
6eb3c11cb9
|
Bug 749551 - Alarm API (AlarmHalService). r=cjones
|
2012-07-06 12:42:36 +02:00 |
|
Gene Lian
|
56475ce904
|
Bug 749551 - Alarm API (Idl and dummy Dom). r=mounir sr=jonas
|
2012-06-22 15:37:49 +08:00 |
|
Ed Morley
|
7a600d2b9c
|
Backout 1dba66cfad9a, ed768b821da1, 23fd9a8d0c9a, 1e90805d96aa, 07425f0e921e (bug 749551) for M3 failures
|
2012-07-03 11:23:54 +01:00 |
|
Gene Lian
|
b6f4ba8251
|
Bug 749551 - Alarm API (AlarmsManager and AlarmService). r=vivien
|
2012-06-22 15:39:07 +08:00 |
|
Gene Lian
|
4e1830c083
|
Bug 749551 - Alarm API (AlarmDB). r=vivien
|
2012-06-22 15:38:59 +08:00 |
|
Gene Lian
|
a4f5ae1752
|
Bug 749551 - Alarm API (AlarmHalService). r=cjones
|
2012-07-03 11:25:07 +02:00 |
|
Gene Lian
|
f017e9b225
|
Bug 749551 - Alarm API (Idl and dummy Dom). r=mounir sr=jonas
|
2012-07-03 11:26:12 +02:00 |
|