Commit Graph

380037 Commits

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

https://hg.mozilla.org/integration/gaia-central/rev/886b2949b391
Author: Gareth Aye <gaye@mozilla.com>
Desc: Merge pull request #23492 from gaye/bug-1060447

Disable week_view_test.js on tbpl

========

https://hg.mozilla.org/integration/gaia-central/rev/d0e4c000c778
Author: gaye <gaye@mozilla.com>
Desc: Disable week_view_test.js on tbpl
2014-08-29 09:55:15 -07:00
B2G Bumper Bot
c043cf7b47 Bumping manifests a=b2g-bump 2014-08-29 09:53:42 -07:00
B2G Bumper Bot
5a904e5842 Bumping manifests a=b2g-bump 2014-08-29 09:40:42 -07:00
Jason Orendorff
2cd0c964b7 Follow-up 2 to bug 1041631 - Make several more tests work when Symbol is not defined. no_r=me, a=RyanVM on a CLOSED TREE.
--HG--
extra : rebase_source : 16b265e2c241278bc15f8aa6a976ed736fcafcac
2014-08-29 11:36:45 -05:00
B2G Bumper Bot
61f03649f2 Bumping gaia.json for 1 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/24ad0668cab1
Author: Anthony Ricaud <anthony@ricaud.me>
Desc: Revert "Merge pull request #23331 from zbraniecki/1022767-use-json-l10n-manifests"

This reverts commit 2d16dbb66bc1acdf759e3ad43e5ac9c4c9f9aa2c, reversing
changes made to 001d1761e4685c2a08d3e96bb362f031d47f4033.
2014-08-29 09:35:12 -07:00
Paul Adenot
a6a05ae91e Backed out changeset aaa4cf41cade (bug 1060311) on a CLOSED TREE 2014-08-29 18:25:35 +02:00
Paul Adenot
5d031aff93 Backed out changeset 36cedce0c8b3 (bug 1060311) 2014-08-29 18:23:12 +02:00
Jason Orendorff
5ba2d14230 Follow-up to bug 1041631 - Make a new test work whether Symbol is defined or not. no_r=me, a=RyanVM on a CLOSED TREE. 2014-08-29 10:59:19 -05:00
Chris Manchester
7f6a9e49b0 Bug 1045525 - Convert automationutils python logging to log through mozlog.structured.;r=ahal 2014-08-29 10:37:17 -04:00
B2G Bumper Bot
5a8a4ae924 Bumping manifests a=b2g-bump 2014-08-29 07:04:17 -07:00
B2G Bumper Bot
6104dd8326 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/8d036be6b988
Author: Anthony Ricaud <anthony@ricaud.me>
Desc: Merge pull request #23472 from wilsonpage/1060295

Bug 1060295 - Remove stray .only r=Rik

========

https://hg.mozilla.org/integration/gaia-central/rev/d4912b8ae4de
Author: Wilson Page <wilsonpage@me.com>
Desc: Bug 1060295 - Remove stray .only
2014-08-29 06:55:22 -07:00
B2G Bumper Bot
7f7062dc91 Bumping manifests a=b2g-bump 2014-08-29 06:45:39 -07:00
B2G Bumper Bot
12fece47c1 Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/c4a9b3d6aeac
Author: Anthony Ricaud <anthony@ricaud.me>
Desc: Merge pull request #23481 from etiennesegonzac/bug-1039455-follow-upt

Bug 1039455 follow up - Updating the l10n key in the test file too. r=alive

========

https://hg.mozilla.org/integration/gaia-central/rev/ef0704cc7a2a
Author: Etienne Segonzac <etienne@segonzac.info>
Desc: Bug 1039455 follow up - Updating the l10n key in the test file too.

========

https://hg.mozilla.org/integration/gaia-central/rev/cf093c66a981
Author: Anthony Ricaud <anthony@ricaud.me>
Desc: Merge pull request #23482 from alivedise/bugzilla/1060344/gij

Bug 1060344 - Fix layout manager ref error r=etienne

========

https://hg.mozilla.org/integration/gaia-central/rev/813389e5a551
Author: Alive Kuo <alegnadise@gmail.com>
Desc: Bug 1060344 - Fix layout manager ref error
2014-08-29 06:45:27 -07:00
Carsten "Tomcat" Book
22a02d91d0 Merge mozilla-central to b2g-inbound a=merge 2014-08-29 15:41:02 +02:00
B2G Bumper Bot
f234f0837a Bumping manifests a=b2g-bump 2014-08-29 06:38:24 -07:00
Paul Adenot
12585467d5 Bug 1060311 - Force the use of an AudioCallbackDriver when at least an AudioNodeStream is present in the graph. r=jesup
This prevent a bug where the graph would be using a SystemClockDriver even if it
was rendering Web Audio API content.

It went like this:
- An AudioContext was created.
- Some AudioNodeStream (Web Audio API MediaStreams) were created, but their
MediaStreamTrack was not added yet
- During the stream ordering, we would see that we were running an
AudioCallbackDriver (because the MSG was created using an AudioContext, and we
pass in hints regarding the type of MediaStreams that will be added in the
future, to open the audio stream as early as we can, because it can take some
time, the MSG was created directly using an AudioCallbackDriver)
- Also during the stream ordering, we see that none of our MediaStream have an
MediaStreamTrack with an audio track. This triggers a switch to a
SystemClockDriver, because the graph thinks there is no audio.
- During CreateAndDestroyAudioNode, we would not switch to an
AudioCallbackDriver on the first iteration (right after the UpdateStreamOrder
call), because we would be switching, and not during the iteration after,
because we thought we already switched (the first patch makes this more robust).

This basically forces an AudioCallbackDriver if there is an AudioNodeStream,
which prevents unnecessary GraphDriver switches (and save threads creation
destruction, audio stream create and destruction, and all other resources
associated with a GraphDriver).

--HG--
extra : rebase_source : 3c79c64a5dffee4c059d286125f0446c04a07a01
2014-08-29 15:18:03 +02:00
Paul Adenot
96b0bfded6 Bug 1060311 - Always use an AudioCallbackDriver when there is and AudioOutputStream. r=jesup
This makes the driver switching logic more robust against other bugs.

--HG--
extra : rebase_source : 556c2c80e1f5901b26f8bb56ea1cebfed3259412
2014-08-29 15:16:41 +02:00
Masatoshi Kimura
2e9ca256a2 Bug 1028288: Add two reftests for globalAlpha. One just tests globalAlpha, and one tests scaling and globalAlpha. r=roc 2014-08-29 23:04:35 +09:00
James Kolb
74a487913a Bug 1028288 Add canvas global transparency support to svgs. r=seth 2014-08-29 23:04:34 +09:00
Carsten "Tomcat" Book
8fdc266131 merge fx-team to mozilla-central a=merge 2014-08-29 15:13:15 +02:00
B2G Bumper Bot
aef62675d0 Bumping manifests a=b2g-bump 2014-08-29 05:52:04 -07:00
B2G Bumper Bot
290be10d56 Bumping gaia.json for 1 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/d361e8c712c0
Author: Zbigniew Braniecki <gandalf@mozilla.com>
Desc: Revert 'Bug 1043496 - Default Image for Contacts When Image is Missing' due to Gu errors
2014-08-29 05:50:32 -07:00
B2G Bumper Bot
7e47b33562 Bumping manifests a=b2g-bump 2014-08-29 02:57:02 -07:00
B2G Bumper Bot
3b03f30583 Bumping gaia.json for 6 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/00a58a23f75d
Author: Alive.Kuo <alegnadise@gmail.com>
Desc: Merge pull request #23404 from alivedise/bugzilla/1039955/circular-activity

Bug 1039955 - Fix direct circular activity, r=etienne

========

https://hg.mozilla.org/integration/gaia-central/rev/0f3181ebc4c6
Author: Alive Kuo <alegnadise@gmail.com>
Desc: Bug 1039955 - Fix direct circular activity by closing front windows

========

https://hg.mozilla.org/integration/gaia-central/rev/a7506a074484
Author: Wilson Page <wilsonpage@me.com>
Desc: Merge pull request #23436 from wilsonpage/1059818

Bug 1059818 - Use 2.0 header colors

========

https://hg.mozilla.org/integration/gaia-central/rev/e95c83b95a07
Author: Wilson Page <wilsonpage@me.com>
Desc: Bug 1059818 - Use 2.0 header colors

========

https://hg.mozilla.org/integration/gaia-central/rev/b6f7ff2d2c06
Author: Staś Małolepszy <stas@mozilla.com>
Desc: Merge pull request #23418 from stasm/1059057-qps-index

Bug 1059057 - Copy localization indexes in pseudolocales. r=gandalf

========

https://hg.mozilla.org/integration/gaia-central/rev/ad54e9bfd106
Author: Staś Małolepszy <stas@mozilla.com>
Desc: Bug 1059057 - Copy localization indexes in pseudolocales. r=gandalf
2014-08-29 02:55:31 -07:00
B2G Bumper Bot
58832a8529 Bumping manifests a=b2g-bump 2014-08-29 02:31:25 -07:00
B2G Bumper Bot
ce1d42f727 Bumping gaia.json for 8 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/305ba7a5e9f1
Author: Carmen Jiménez <carmen.jimenezcabezas@telefonica.com>
Desc: Merge pull request #23364 from mcjimenez/bug1039455

Bug 1039455 - Change confirm installation question (r = alive)

========

https://hg.mozilla.org/integration/gaia-central/rev/35e1d80936ff
Author: Carmen Jimenez Cabezas <cjc@tid.es>
Desc: Bug 1039455 - Change confirm installataion question

========

https://hg.mozilla.org/integration/gaia-central/rev/17e2f78bb57f
Author: gasolin <gasolin@gmail.com>
Desc: Merge pull request #23139 from gasolin/issue-1055424-2

Bug 1055424 - migrate when new key is used in system, r=alive,arthur

========

https://hg.mozilla.org/integration/gaia-central/rev/a827c242c433
Author: gasolin <gasolin@gmail.com>
Desc: Bug 1055424 - migrate when new key is used in system

========

https://hg.mozilla.org/integration/gaia-central/rev/06e7f94e196e
Author: Arthur Chen <crh0716@gmail.com>
Desc: Merge pull request #23419 from flodolo/bug1057696

Bug 1057696 - [Settings] Browser Privacy, fix l10n issues r=arthurcc

========

https://hg.mozilla.org/integration/gaia-central/rev/599b87888776
Author: Francesco Lodolo (:flod) <flod@lodolo.net>
Desc: Bug 1057696 - [Settings] Browser Privacy: l10n issues

========

https://hg.mozilla.org/integration/gaia-central/rev/c60ecbe97266
Author: Zibi Braniecki <zbigniew.braniecki@gmail.com>
Desc: Merge pull request #23331 from zbraniecki/1022767-use-json-l10n-manifests

1022767 use manifest.webapp instead of locales.ini. r=stas, sr=vingtetun, f=yurenju,

========

https://hg.mozilla.org/integration/gaia-central/rev/25c487251a75
Author: Zbigniew Braniecki <gandalf@mozilla.com>
Desc: Bug 1022767 - Use L20n's manifests instead of locales.ini
2014-08-29 02:25:32 -07:00
B2G Bumper Bot
3c5ebdcc92 Bumping manifests a=b2g-bump 2014-08-29 01:46:25 -07:00
B2G Bumper Bot
59e85a674c Bumping gaia.json for 3 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/a116b378c3cf
Author: Pavel Ivanov <pivanov@mozilla.com>
Desc: Merge pull request #22160 from pivanov/bug-1043496

Bug 1043496 - Default Image for Contacts When Image is Missing

========

https://hg.mozilla.org/integration/gaia-central/rev/9089915554b0
Author: Pavel Ivanov <pivanov@mozilla.com>
Desc: Bug 1043496 - Default Image for Contacts When Image is Missing

========

https://hg.mozilla.org/integration/gaia-central/rev/bceb894d967a
Author: Zac <zcampbell@mozilla.com>
Desc: Bug 1038698 - Disable test_a11y_utility_tray_visibility.py - red on TBPL
2014-08-29 01:40:27 -07:00
B2G Bumper Bot
476acc5081 Bumping manifests a=b2g-bump 2014-08-29 01:11:31 -07:00
B2G Bumper Bot
27b1a7a4e5 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/64f5792194f3
Author: Kyle Machulis <kyle@nonpolynomial.com>
Desc: Merge pull request #23425 from qdot/846200-fix-permissions

846200 fix permissions

========

https://hg.mozilla.org/integration/gaia-central/rev/e2b510d329f8
Author: Kyle Machulis <kyle@nonpolynomial.com>
Desc: Bug 846200 - Fix permissions names in test atoms
2014-08-29 01:05:33 -07:00
B2G Bumper Bot
fc82ac26de Bumping manifests a=b2g-bump 2014-08-29 00:56:46 -07:00
B2G Bumper Bot
cb6ba9ca84 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/3d056f6dc6be
Author: viorelaioia <viorelaioia@gmail.com>
Desc: Merge pull request #23460 from chirarobert/browser_sanity

Bug 1060242 - [v2.1] Remove test_browser_lan.py from sanity suite

========

https://hg.mozilla.org/integration/gaia-central/rev/cf0d911c4806
Author: Robert Chira <robertchira@P5075.(none)>
Desc: Bug 1060242 - [v2.1] Remove test_browser_lan.py from sanity suite
2014-08-29 00:50:28 -07:00
Kyle Machulis
449b422a16 Bug 846200 - Fix permission granting in reporting.py module; r=davehunt
--HG--
extra : rebase_source : 4e7139439d9a55c5f7817908f93cced32a175ef9
2014-08-29 00:40:08 -07:00
Szu-Yu Chen [:aknow]
f41f3ebd5b Bug 1060222 - Fix an error in ril_worker.js. r=htsai 2014-08-28 23:10:00 -04:00
Jamin Liu
0711038305 Bug 1060216 - [Bluedroid] Distribute "PropertyChanged" signal to notify BluetoothAdapter when discovery state changed. r=shuang 2014-08-29 02:10:00 -04:00
Ethan Tseng
6f5dfa420c Bug 1059144 - [MADAI][Multimedia] System crash when RTSP client connects to a non-RTSP-server port. r=sworkman 2014-08-29 17:57:32 +08:00
Randy Lin
4b227d8d5a Bug 1055920 - [B2G][AudioChannel] Avoid to create unnecessary AudioChannel instance on child process. r=baku 2014-08-29 14:10:16 +08:00
Chuck Lee
bcbd8dd34b Bug 1055380 - Cast network configs into correct data type. r=hchang 2014-08-29 11:18:02 +08:00
Gijs Kruitbosch
2f41642ad2 Bug 1050809 - update toolbar/menupanel icons for yosemite, r=jaws 2014-08-28 17:24:05 +01:00
Garvan Keeley
9914f6f5b4 Bug 1038843 - Part 2: Enable stumbler based on existing 'app.geo.reportdata' Gecko pref. r=nalexander 2014-08-28 12:52:00 -07:00
Garvan Keeley
abbc2d7245 Bug 1038843 - Part 1: Land initial stumbler Java code and manifest fragments. r=nalexander,rnewman
The stumbler is a geolocation data collecting and uploading service.

This code is a partial export of the MozStumbler repository hosted at
https://github.com/mozilla/MozStumbler.
2014-08-28 17:19:00 -07:00
Mike Conley
294fcbd543 Bug 1057966 - Fix Help menu in e10s windows. r=billm.
The help menu wasn't populating properly because gSafeBrowsing was attempting
to get the URI for the loaded page by getting content.document.documentURI.
Since bug 1051017 landed, content is unavailable for e10s windows. We use
the selected browser's currentURI instead.

--HG--
extra : rebase_source : 7dfa0f74b99ed35563bc4507c2a5ff70a703af3e
2014-08-29 19:54:32 -04:00
Richard Newman
d8d650a7ee Bug 1060536 - Move LocaleAware into Fennec to allow for easier reuse from Search. r=nalexander
--HG--
rename : mobile/android/base/sync/setup/activities/LocaleAware.java => mobile/android/base/LocaleAware.java
2014-08-29 16:14:54 -07:00
Richard Newman
87a9dfbe30 Bug 1060524 - Eliminate pre-Gingerbread support in Android Sync. r=nalexander 2014-08-29 16:14:20 -07:00
Chenxia Liu
201a636411 Bug 1059440 - Don't set noHistory for onboarding activity. r=trivial 2014-08-29 15:52:10 -07:00
Michael Ratcliffe
da361adf4e Bug 1060188 - [App Manager] Cannot use Inspector to view app's DOM on Flame r=paul 2014-08-29 13:44:59 +01:00
Brian Grinstead
de2965fbbf Bug 1060041 - Don't expand folders in projecteditor tree by default;r=jryans 2014-08-29 15:49:11 -07:00
Raymond Etornam Agbeame(:retornam)
d6888a866b Bug 1052856 - Copy as curl should use --compressed instead of -H accept-encoding gzip r=jryans 2014-08-29 15:49:01 -07:00
Girish Sharma
d97f20d1cc Bug 970517 - Storage Inspector fron end - tests, r=jwalker 2014-08-29 18:24:52 +05:30
Girish Sharma
2e264a6e61 Bug 970517 - Storage Inspector front end, r=jwalker, mratcliffe 2014-08-29 22:02:49 +05:30