Commit Graph

350828 Commits

Author SHA1 Message Date
B2G Bumper Bot
f92889124e Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/a39211f0a54f
Author: Ben Kelly <bkelly@mozilla.com>
Desc: Merge pull request #15280 from rsajdok/909201

Bug 909201: Editing names doesn't update properly. r=bkelly

========

https://hg.mozilla.org/integration/gaia-central/rev/e8823b3b1300
Author: Robert Sajdok <robert.sajdok@gmail.com>
Desc: Bug 909201: Editing names doesn't update properly.
2014-03-14 06:25:23 -07:00
B2G Bumper Bot
736e27eb05 Bumping manifests a=b2g-bump 2014-03-14 05:36:36 -07:00
B2G Bumper Bot
368d36bca8 Bumping gaia.json for 1 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/67a7e41357ac
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Bug 983171 - Disable intermittent failing passcode test
2014-03-14 05:35:21 -07:00
B2G Bumper Bot
c9c40e3fb9 Bumping manifests a=b2g-bump 2014-03-14 05:01:41 -07:00
B2G Bumper Bot
a0d3f7b5a3 Bumping gaia.json for 6 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/9a59e0c949e7
Author: GaryChen(pychen) <mmm198219@gmail.com>
Desc: Merge pull request #17180 from mpizza/Bug_983508_build_system_get_wrong_path

Bug 983508 - [Build System] install-test-media get wrong "Pictures" path. r=yuren.

========

https://hg.mozilla.org/integration/gaia-central/rev/d6ae4b8f725c
Author: mpizza <mmm198219@gmail.com>
Desc: Bug 983508 - [Build System] install-test-media get wrong "Pictures" path

========

https://hg.mozilla.org/integration/gaia-central/rev/a84df805cba2
Author: vingtetun <21@vingtetun.org>
Desc: Merge pull request #17194 from vingtetun/bug978067-landing

Bug 978067 - [Call Log] Remove position: sticky as it hurts scrolling pe...

========

https://hg.mozilla.org/integration/gaia-central/rev/8444b9cfd599
Author: Vivien Nicolas <21@vingtetun.org>
Desc: Bug 978067 - [Call Log] Remove position: sticky as it hurts scrolling performance. r=Rik

========

https://hg.mozilla.org/integration/gaia-central/rev/02e0c85507df
Author: vingtetun <21@vingtetun.org>
Desc: Merge pull request #17193 from vingtetun/bug977680-landing

Bug 977680 - [Messages] Remove position: sticky as it hurts scrolling pe...

========

https://hg.mozilla.org/integration/gaia-central/rev/79d1e7f6f785
Author: Vivien Nicolas <21@vingtetun.org>
Desc: Bug 977680 - [Messages] Remove position: sticky as it hurts scrolling performance. r=kgrandon, f=felash
2014-03-14 05:00:20 -07:00
Carsten "Tomcat" Book
dba6443bb5 Merge mozilla-central to b2g-inbound 2014-03-14 12:43:37 +01:00
Carsten "Tomcat" Book
36c4f3f93d merge b2g-inbound to mozilla-central 2014-03-14 12:37:28 +01:00
Carsten "Tomcat" Book
329f44908d merge fx-team to mozilla-central 2014-03-14 12:35:23 +01:00
B2G Bumper Bot
55bdc27c28 Bumping manifests a=b2g-bump 2014-03-14 04:11:19 -07:00
B2G Bumper Bot
d719fba682 Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/b633ac1c4970
Author: Zac <zcampbell@mozilla.com>
Desc: Merge pull request #17188 from chirarobert/xfail_test_sms_to_dialer

Bug 983585 - Xfail test_sms_to_dialer with Bug 983070

========

https://hg.mozilla.org/integration/gaia-central/rev/a1add141fba6
Author: chirarobert <robert.chira@softvision.ro>
Desc: Bug 983585 - Xfail test_sms_to_dialer with Bug 983070

========

https://hg.mozilla.org/integration/gaia-central/rev/fc8a1898b5d7
Author: Zac <zcampbell@mozilla.com>
Desc: Merge pull request #17187 from chirarobert/unxfail_keyboard_test

Bug 983584 - Unxfail test_email_keyboard because Bug 982113 was resolved

========

https://hg.mozilla.org/integration/gaia-central/rev/2b49155925e4
Author: chirarobert <robert.chira@softvision.ro>
Desc: Bug 983584 - Unxfail test_email_keyboard because Bug 982113 was resolved
2014-03-14 04:05:19 -07:00
Thomas Zimmermann
23eb2cae61 Bug 979370: Remove |BluetoothService::IsEnabledInternal|, r=echou
The method |IsEnabledInternal| of |BluetoothService| is not used
any longer. This patch removes it.
2014-03-14 10:50:29 +01:00
Thomas Zimmermann
a7b1e31f1b Bug 979370: Remove |ToggleBtTask|, r=echou
|ToggleBtTask| runs on the same thread as the start and stop methods
of |BluetoothService|. This patch merges the code of |ToggleBtTask|
into the start and stop methods and removes the class.
2014-03-14 10:50:18 +01:00
Thomas Zimmermann
7cdb5bf24d Bug 979370: Split |BluetoothService::StartStopBluetooth|, r=echou
This patch splits |BluetoothService::StartStopBluetooth| into two
separate functions. Both have mostly different code paths.
2014-03-14 10:50:02 +01:00
Thomas Zimmermann
cdaa2663bf Bug 979370: Move Bluetooth thread into BlueZ backend, r=echou
The Bluetooth thread is only necessary for starting and stopping
Bluetooth with the BlueZ backend. Bluedroid implements its multi-
threading internally.

This patch moves the Bluetooth thread into the BlueZ backend. Two
runnables implement the starting and stopping code. The methods
|StartInternal| and |StopInternal| of |BluetoothDBusService| each
create an instance of the respective runnable and send it to the
internal BT thread. The code in |BluetoothService| runs completely
on the main thread.

For the Bluedroid back end, the patch changes a number of thread
assertions.
2014-03-14 10:49:33 +01:00
B2G Bumper Bot
b9a2856b6c Bumping manifests a=b2g-bump 2014-03-14 02:31:20 -07:00
B2G Bumper Bot
62744b4809 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/a8df0c02a4d8
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Merge pull request #17160 from jmcanterafonseca/fix_fb_unfriend

Bug 981159 - [B2G][Contacts] Unfriend Facebook friends are not removed f...

========

https://hg.mozilla.org/integration/gaia-central/rev/18dd3091241e
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Bug 981159 - [B2G][Contacts] Unfriend Facebook friends are not removed from the user's contacts after import
2014-03-14 02:25:21 -07:00
B2G Bumper Bot
535a388b24 Bumping manifests a=b2g-bump 2014-03-14 01:41:01 -07:00
B2G Bumper Bot
d992b7c10f Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/a26ba3d3d76b
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Merge pull request #16972 from KevinGrandon/bug_980627_email_trash_action_default

Bug 980627 - [email] selecting the multiselect has inconsistent behavior for 0 items selected

========

https://hg.mozilla.org/integration/gaia-central/rev/c7ff2e07dde4
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Bug 980627 - [email] selecting the multiselect has inconsistent behavior for 0 items selected r=jrburke
2014-03-14 01:35:25 -07:00
B2G Bumper Bot
c64724f0c4 Bumping manifests a=b2g-bump 2014-03-14 00:11:20 -07:00
B2G Bumper Bot
9be7aa530c Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/37b9db0c5bc0
Author: Ian Liu <iliu@mozilla.com>
Desc: Merge pull request #17117 from ian-liu/bluetooth/visual_refresh_of_bluetooth_icon

Bug 979981 - [B2G] [Bluetooth] Truncated devices names will have their ellipses overlap the icon, r=@crh0716

========

https://hg.mozilla.org/integration/gaia-central/rev/0b2a64c3f579
Author: ian-liu <iliu@mozilla.com>
Desc: Bug 979981 - [B2G] [Bluetooth] Truncated devices names will have their ellipses overlap the icon
2014-03-14 00:05:22 -07:00
B2G Bumper Bot
05e4a5906b Bumping manifests a=b2g-bump 2014-03-13 23:56:36 -07:00
B2G Bumper Bot
540d4ad872 Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/3f06a10b58dc
Author: Etienne Segonzac <etienne@segonzac.info>
Desc: Merge pull request #17163 from etiennesegonzac/bug-983089-dsds-call-from-calllog

Bug 983089 - Choose SIM when calling unknown contact from call Log. r=rik

========

https://hg.mozilla.org/integration/gaia-central/rev/17789f644540
Author: Etienne Segonzac <etienne@segonzac.info>
Desc: Bug 983089 - Choose SIM when calling unknown contact from call Log.

========

https://hg.mozilla.org/integration/gaia-central/rev/458fe1ad4b05
Author: gitmai <mri@tid.es>
Desc: Merge pull request #16704 from gitmai/bug-849205-CC-align-FTU-with-system-FTE-CSS

Bug 849205 -[Cost Control] Align Cost Control first time setup with Fire...
r=arnau

========

https://hg.mozilla.org/integration/gaia-central/rev/aa2f12f21b44
Author: mai <mri@tid.es>
Desc: Bug 849205 -[Cost Control] Align Cost Control first time setup with FirefoxOS first time usage
2014-03-13 23:55:22 -07:00
Shu-yu Guo
22b5da3219 Bug 980585 - Followup: improve style and comment. (r=me) 2014-03-13 22:40:17 -07:00
Nick Alexander
2df97e60e4 Bug 974015 - Replace "Firefox online services" with "Firefox cloud services". r=rnewman 2014-03-13 22:31:55 -07:00
Nick Alexander
84254e1bf9 Bug 974942 - Don't share link{tos,privacy} strings. r=rnewman 2014-03-13 22:31:55 -07:00
Nick Alexander
abc9c865fa Bug 974133 - Replace "Firefox account" with "Firefox Account". r=rnewman 2014-03-13 22:31:54 -07:00
Chris Pearce
a7e9be7f78 Bug 983204 - Ensure RTSP OMX reader's decoder is made active during loadmetadata. r=vchang 2014-03-14 13:24:54 +08:00
Nick Alexander
67e35078ef Bug 974129 - Part 2: use branding icon instead of fxaccount_icon. r=rnewman 2014-03-13 22:21:00 -07:00
Nick Alexander
15f8909f54 Bug 974129 - Part 1: update fxaccount_intro drawable. r=rnewman 2014-03-13 22:21:00 -07:00
Nick Alexander
62b2b2d7cb Bug 974124 - Update padding, margins, and color scheme in FxA setup. r=rnewman 2014-03-13 22:21:00 -07:00
B2G Bumper Bot
a6593e0380 Bumping manifests a=b2g-bump 2014-03-13 22:06:19 -07:00
B2G Bumper Bot
c9a1db2d24 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/0af3f6ac8ca8
Author: Rudy Lu <me@rudy.lu>
Desc: Merge pull request #17026 from RudyLu/keyboard/Bug979764-remove_dup_resizeTo

Bug 979764 - [keyboard refactor] resizeTo would be invoked more tha once when keyboard relaunch
r=timdream

========

https://hg.mozilla.org/integration/gaia-central/rev/b7fe65629fb5
Author: Rudy Lu <me@rudy.lu>
Desc: Bug 979764 - [keyboard refactor] resizeTo would be invoked more than
once when keyboard relaunch
2014-03-13 22:00:22 -07:00
Bill McCloskey
fd05f3eb04 Bug 982828 - [e10s] Disable mochitest-plain tests that don't pass in e10s (r=ted) 2014-03-13 21:38:19 -07:00
B2G Bumper Bot
2bd7e5a156 Bumping manifests a=b2g-bump 2014-03-13 20:41:34 -07:00
B2G Bumper Bot
cc665bc205 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/7735241bad95
Author: James Burke <jrburke@gmail.com>
Desc: Merge pull request #17172 from jrburke/bug966147-email-notification-click-close

Bug 966147 - Email Notification doesnt go away when I click on it r=asuth

========

https://hg.mozilla.org/integration/gaia-central/rev/4ac78c80b474
Author: jrburke <jrburke@gmail.com>
Desc: Bug 966147 - Email Notification doesnt go away when I click on it
2014-03-13 20:40:12 -07:00
B2G Bumper Bot
816d834678 Bumping manifests a=b2g-bump 2014-03-13 20:36:36 -07:00
B2G Bumper Bot
0b9b978891 Bumping gaia.json for 1 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/4d338b910597
Author: KWierso <kwierso@gmail.com>
Desc: Revert "Merge pull request #17128 from vingtetun/bug977680" for gaia-unit bustage

This reverts commit 6a70c1909a04f25f370502aebc7b6acfdf6e7c72, reversing
changes made to 0bd8cd3ec44de6289da066685e1a2aed805deb91.
2014-03-13 20:35:39 -07:00
Wes Kocher
7f98e4a5a3 Merge m-c to fx-team 2014-03-13 20:01:18 -07:00
Wes Kocher
96e2c6e59d Merge m-c to b2g-inbound 2014-03-13 20:00:05 -07:00
Wes Kocher
2699402763 Merge fx-team to m-c 2014-03-13 19:09:07 -07:00
Wes Kocher
f0d4dcf97c Merge inbound to m-c 2014-03-13 19:00:59 -07:00
B2G Bumper Bot
583e8a1ff8 Bumping manifests a=b2g-bump 2014-03-13 18:51:04 -07:00
B2G Bumper Bot
a7bf214211 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/7a0a8189617b
Author: vingtetun <21@vingtetun.org>
Desc: Merge pull request #17128 from vingtetun/bug977680

Bug 977680 - [Messages] Remove position: sticky as it hurts scrolling pe...

========

https://hg.mozilla.org/integration/gaia-central/rev/007b0102dc88
Author: Vivien Nicolas <21@vingtetun.org>
Desc: Bug 977680 - [Messages] Remove position: sticky as it hurts scrolling performance. r=kgrandon,f=felash
2014-03-13 18:45:27 -07:00
B2G Bumper Bot
f4aef3637c Bumping manifests a=b2g-bump 2014-03-13 17:46:29 -07:00
B2G Bumper Bot
b527890a2e Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/aca46d5318c9
Author: James Burke <jrburke@gmail.com>
Desc: Merge pull request #15829 from jrburke/bug882000-email-download-button

Bug 882000 - [Email] Attachment icons are not vertically center aligned r=mcav

========

https://hg.mozilla.org/integration/gaia-central/rev/b3e70c0527c2
Author: jrburke <jrburke@gmail.com>
Desc: Bug 882000 - [Email] Attachment icons are not vertically center aligned
2014-03-13 17:40:23 -07:00
Jared Wein
ad7bde555f Bug 971948 - [Australis] Bookmark toolbar items icon is broken in the palette. r=Gijs 2014-03-13 20:34:19 -04:00
Shane Caraveo
646d77701d Bug 915835 fix leak in socialmarks event listeners, r=markh 2014-03-13 17:23:34 -07:00
Nick Alexander
220e4b14a1 Bug 983350 - Include User-Agent header for FxAccount and TokenServer requests. r=rnewman
--HG--
extra : rebase_source : cb622c61646be2752e4900fd6e480874e9ba5406
2014-03-13 17:13:58 -07:00
Nick Alexander
3dca6ed1e7 Bug 967022 - Fix Gingerbread progressbar animation bustage. r=rnewman
--HG--
extra : rebase_source : 1db653efb3d0656b9208ade6859f86fb10f1be3b
2014-03-13 17:06:29 -07:00
Nick Alexander
88410dfa28 Bug 978944 - Use Android native code pbkdf2sha256 in FxAccounts. r=rnewman,mcomella
--HG--
extra : rebase_source : 73cc0d3b480246f64a07388caafda56465039bda
2014-03-13 17:04:45 -07:00