Kyle Huey
7df433eefc
Bug 919457: Followup to fix bustage. r=me
2013-09-30 10:11:20 +08:00
Reuben Morais
a881a1fb9b
Bug 916267 - Follow up, CLOBBER needed on Windows.
2013-09-29 22:45:23 -03:00
Matt Woodrow
d03a83ccb9
Bug 920571 - Don't read from the trailing stride on the last row of pixels when copying image data in SourceSurfaceCG. r=jrmuizel
2013-09-30 14:42:45 +13:00
Kyle Huey
b9565ad1bf
Bug 919457: Allow bindings specific to workers without the old-style worker ownership model. r=bz
2013-09-30 09:37:26 +08:00
Matt Woodrow
c0acca2662
Bug 886999 - Backout c3a044164b5f for causing deadlocks (Bug 920979)
2013-09-30 14:31:50 +13:00
Reuben Morais
bd883159cf
Bug 850430 - Treat key as an array on the Android contacts backend. r=me
2013-09-29 22:28:28 -03:00
Reuben Morais
b0224bc97c
Bug 916267 - Remove XPIDL for MozContactChangeEvent. r=smaug
2013-09-29 22:22:43 -03:00
Reuben Morais
203aa552e6
Bug 850430 - Handle new defaults correctly in the Android contacts backend. r=cpeterson
2013-09-29 22:22:35 -03:00
Reuben Morais
303f9e42ea
Bug 850430 - Handle 'pref' property correctly in the Android contacts backend. r=cpeterson
2013-09-29 22:22:35 -03:00
Reuben Morais
72b3ab2739
Bug 850430 - Handle Date properties consistently across the Contacts code. r=gwagner
2013-09-29 22:22:34 -03:00
Hsin-Yi Tsai
b901002a78
Bug 921422 - B2G RIL: include clientId in async messages from RadioInterface to RILContentHelper. r=vicamo
2013-09-30 08:56:00 +08:00
Szu-Yu Chen [:aknow]
fb33cdb1d1
Bug 897940 - Extend timeout. r=hsinyi
2013-10-01 18:22:07 +08:00
Gaia Pushbot
923f09c636
Bumping gaia.json for 2 gaia-central revision(s) a=gaia-bump
...
========
https://hg.mozilla.org/integration/gaia-central/rev/16c85e438f47
Author: Amir Nissim <amirnissim@gmail.com>
Desc: Merge pull request #12563 from EverythingMe/queryindex-twitter-921841
Bug 921841 - [e.me] Apps installed from Market are not added to Smart Co...
========
https://hg.mozilla.org/integration/gaia-central/rev/2528c7498ba8
Author: Amir Nissim <amirn@everything.me>
Desc: Bug 921841 - [e.me] Apps installed from Market are not added to Smart Collections [r=ranbena]
2013-10-01 03:10:23 -07:00
Gaia Pushbot
49a1e24465
Bumping gaia.json for 2 gaia-central revision(s) a=gaia-bump
...
========
https://hg.mozilla.org/integration/gaia-central/rev/ea3056fce8b6
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Merge pull request #12562 from jmcanterafonseca/bug_name_export_salva
Bug 922248 - [Contacts] Cannot update a previously exported contact
========
https://hg.mozilla.org/integration/gaia-central/rev/ae460298a224
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Bug 922248 - [Contacts] Cannot update a previously exported contact
2013-10-01 01:50:23 -07:00
Gaia Pushbot
db67c6f4b7
Bumping gaia.json for 2 gaia-central revision(s) a=gaia-bump
...
========
https://hg.mozilla.org/integration/gaia-central/rev/e7b0d65fb83f
Author: Greg Weng <snowmantw@gmail.com>
Desc: Merge pull request #12561 from snowmantw/issue919858
Bug 919858 - [LockScreen] Enhance the UI experiments when unlocking the phone with one hande
========
https://hg.mozilla.org/integration/gaia-central/rev/20efa00c07b0
Author: Greg Weng <snowmantw@gmail.com>
Desc: Bug 919858 - [LockScreen] Enhance the UI experiments when unlocking the phone with one hande
2013-10-01 01:25:25 -07:00
Thomas Zimmermann
19ae300ab9
Bug 919913: Introduce DBusReplyCallback, r=qdot,echou
...
DBusReplyCallback replaces the removed DBusCallback as type for
reply-handler functions. Bluetooth, the only user of DBus, has
been updated as well.
2013-10-01 10:20:55 +02:00
Thomas Zimmermann
2f4cef68a1
Bug 919913: Cleanup DBusUtils, r=qdot
...
This patch cleans up the DBus utilitys and helper classes. All functions
for sending have been removed. Their users have been converted to the
new methods in RawDBusConnection. Include statements have been cleaned
up as well. Some methods of DBusMessageRefPtr have been moved from the
header to the source file to prevent inclusion of the DBus API from within
the header file.
2013-10-01 10:20:39 +02:00
Thomas Zimmermann
f718c75cc4
Bug 919913: Converted BluetoothDBusService to new Send methods, r=echou
...
This patch changes BluetoothDBusService to use the new send methods
that have been added to RawDBusConnection. The conversion from the
old functions is
- dbus_func_send to Send,
- dbus_func_send_async to SendWithReply,
- dbus_func_args_async to SendWithReply,
- dbus_func_args to SendWithError, and
- dbus_func_args_timeout to SendWithError.
References to DBusCallback have been removed.
2013-10-01 10:20:30 +02:00
Thomas Zimmermann
7eaed0c5d5
Bug 919913: Add send methods to RawDBusConnection, r=qdot
...
This patch adds methods for sending DBus messages to the class
RawDBusConnection. There are 3 types of interfaces.
- Send Sends a message over DBus. No error checking or
handling of replies is performed. These methods
do not block the sending thread.
- SendWithReply Sends a message over DBus and runs a call-back
function for the reply. This should be the default
case for most scenarios. These methods do not
block the sending thread.
- SendWithError Sends a message over DBus and waits for the reply
or an error. This interface has only been added for
some existing code that can safely block the sending
thread. Don't use it in new code.
These 3 types of interfaces represent what is currently used of the
existing send functions in DBusUtils. When all users have been converted
to the new methods, the interfaces in DBusUtils can be removed.
2013-10-01 10:20:21 +02:00
Gina Yeh
67f0e815a0
Bug 913374 - Use nsRefPtr for BluetoothProfileController in profile managers, r=echou
2013-10-01 15:26:40 +08:00
Gaia Pushbot
2e0462cb61
Bumping gaia.json for 2 gaia-central revision(s) a=gaia-bump
...
========
https://hg.mozilla.org/integration/gaia-central/rev/96fb4393cbfd
Author: Amir Nissim <amirnissim@gmail.com>
Desc: Merge pull request #12530 from EverythingMe/911568-nativeinfo
Bug 911568 - [e.me][bug] Pre-installed apps don't show in relevant colle...
========
https://hg.mozilla.org/integration/gaia-central/rev/2ea5d6ad9974
Author: Amir Nissim <amirn@everything.me>
Desc: Bug 911569 - [e.me][bug] Pre-installed apps don't show in relevant collections [r=ranbena]
2013-10-01 00:15:23 -07:00
Carsten "Tomcat" Book
5e0c15e8db
merge mozilla--inbound to mc
2013-09-29 11:36:17 +02:00
Carsten "Tomcat" Book
4b47afca06
merge b2g-inbound to mc
2013-09-29 11:34:53 +02:00
Gregory Szorc
6f9c45b204
NO BUG - Document common build system targets, add requirements.txt
...
DONTBUILD (NPOTB)
2013-09-29 10:43:49 +02:00
Cameron McCormack
610115dec5
Bug 921795 - Make inDOMUtils::GetCSSValuesForProperty report "initial" not "-moz-initial". r=mina
2013-09-29 14:41:30 +10:00
Cameron McCormack
fbff651ff7
No bug - Comment typo fixes in nsCSSProps.h. (DONTBUILD)
2013-09-29 11:40:07 +10:00
Steve Workman
640ab78917
Backout 6a84bba784c9 and df399d443e57 (Bug 853423) for xpcshell failures
2013-09-28 16:20:59 -07:00
Ehsan Akhgari
dd0ebfdbf1
Forward declare gfxMatrix as a struct, no bug
2013-09-28 18:20:45 -04:00
Steve Workman
13684f2c06
Bug 853423 - Tests to verify speculative connection are blocked for local IP addresses r=mcmanus
2013-09-28 15:00:20 -07:00
Steve Workman
68ae0b0e0a
Bug 853423 - Block speculative connections for local IP addresses r=mcmanus
2013-09-28 14:59:56 -07:00
Ehsan Akhgari
419addc4d6
Fix a broken #include guard, no bug
2013-09-28 17:17:44 -04:00
Ehsan Akhgari
95088a8476
Bug 919572 follow-up: remove two unused variables
2013-09-28 17:08:30 -04:00
Steve Workman
2d38e5e0e4
Backout 736a590cb652 and 0c409a9f58c9 (Bug 853423) due to xpcshell failures
2013-09-28 12:37:30 -07:00
Andrew Quartey
09470bc226
Bug 896273 - Make HTMLSelectElement::SetOptionsSelectedByIndex take a flag argument. r=Ms2ger
2013-09-28 15:04:20 -04:00
Andrew Quartey
823d74374e
Bug 884935 - Align navigator.vibrate to spec. r=smaug
2013-09-28 14:58:38 -04:00
Steve Workman
38b912cd11
Bug 867755 - Add strong refcnting for derived classes of mozilla::image::Image r=seth
2013-09-28 11:28:44 -07:00
Steve Workman
71940cda4d
Bug 867755 - Return already_AddRefed from GetStatusTracker instead of C++ ref r=seth
2013-09-28 11:28:44 -07:00
Steve Workman
c80463c39a
Bug 867755 - Detect if DiscardTracker has shutdown r=seth
2013-09-28 11:28:44 -07:00
Steve Workman
3763714e33
Bug 867755 - Dispatch imgRequestProxy notifications r=seth
2013-09-28 11:28:43 -07:00
Steve Workman
afcf612b35
Bug 867755 - Make DiscardTracker thread-safe r=seth
2013-09-28 11:28:43 -07:00
Steve Workman
036d4ca49a
Bug 867755 - Support OnDataAvailable and OnStopRequest off main thread for image loading r=seth
2013-09-28 11:28:42 -07:00
Steve Workman
a81ba47685
Bug 853423 - Tests to verify speculative connections are blocked for local IP addresses r=mcmanus
2013-09-28 11:08:18 -07:00
Steve Workman
f115cde0b6
Bug 853423 - Block speculative connections for local IP addresses r=mcmanus
2013-09-28 11:08:17 -07:00
Tim Taubert
d12a711890
Bug 586153 - Avoid tab panel ID collisions by using a monotonic counter; r=dolske
2013-09-28 20:07:07 +02:00
Tim Taubert
1b11e04c10
Bug 906462 - Remove noise backgrounds for about:newtab and about:home; r=dao
...
--HG--
rename : browser/themes/linux/newtab/noise.png => browser/themes/linux/devtools/noise.png
rename : browser/themes/osx/newtab/noise.png => browser/themes/osx/devtools/noise.png
rename : browser/themes/windows/newtab/noise.png => browser/themes/windows/devtools/noise.png
2013-09-28 18:38:47 +02:00
Tim Taubert
afa576f0c6
merge m-c to fx-team
2013-09-28 16:06:43 +02:00
Gaia Pushbot
479bcb9e98
Bumping gaia.json for 2 gaia-central revision(s) a=gaia-bump
...
========
https://hg.mozilla.org/integration/gaia-central/rev/a313d5e13d4f
Author: Alive.Kuo <alegnadise@gmail.com>
Desc: Merge pull request #12479 from alivedise/bugzilla/920944/two-homescreen-instance-in-b2gperf
Bug 920944 - Fix b2gperf, r=timdream
========
https://hg.mozilla.org/integration/gaia-central/rev/fc8a0445f77b
Author: Alive Kuo <alegnadise@gmail.com>
Desc: Bug 920944 - Fix b2gperf
2013-09-28 06:20:26 -07:00
ffxbld
6661ca5dd5
No bug, Automated blocklist update from host bld-linux64-ec2-007 - a=blocklist-update
2013-09-28 03:31:27 -07:00
ffxbld
48f143b247
No bug, Automated HSTS preload list update from host bld-linux64-ec2-318 - a=hsts-update
2013-09-28 03:30:01 -07:00
Victor Porof
7a9f8f9a02
Bug 907755 - Followups, r=fitzgen
2013-09-28 10:41:20 +03:00