Commit Graph

466243 Commits

Author SHA1 Message Date
Karl Tomlinson
32877f50d8 mochitest for bug 1255618 r=Ehsan
MozReview-Commit-ID: 9SImAja2jXH

--HG--
extra : rebase_source : 71f4e8c72c864867b3cf004a12a02ee29ca07b59
2016-03-14 16:58:18 +13:00
Karl Tomlinson
f531d372a2 bug 1255618 remove AudioContext from global window at unlink r=Ehsan
mDestination is cleared during unlink, which means that after that point the
window can't do much with the AudioContext, nor should need to do so.

MozReview-Commit-ID: E45aCpEfJEu

--HG--
extra : rebase_source : cafd502552b7126bcdddc2544c4c28c1b62a701f
2016-03-11 20:54:31 +13:00
Jan Varga
6845def215 Bug 1182987 - Part 4: Add a test for QuotaExceededError recovery and the new "cleanup" transaction type; r=baku 2016-03-15 07:00:44 +01:00
Jan Varga
e578091712 Bug 1182987 - Part 3: Add "cleanup" transaction with disabled quota checks and vacuuming/checkpointing after commit; r=baku 2016-03-15 07:00:37 +01:00
Jan Varga
7bb929b877 Bug 1182987 - Part 2: Add getQuotaObjects() to mozIStorageConnection; r=mak 2016-03-15 07:00:28 +01:00
Jan Varga
f3d631abd1 Bug 1182987 - Part 1: Remove unreferenced files immediately; r=baku 2016-03-15 07:00:15 +01:00
JW Wang
2c1e594fe7 Bug 1236789. Part 2 - fix assertions when |aFlags == NS_DISPATCH_TAIL|. r=bholley
MozReview-Commit-ID: E5a8zP9cMI6
2016-03-15 13:12:27 +08:00
Robert O'Callahan
d6063164cd Bug 1236789. Avoid creating an unnecessary thread pool thread for tail-dispatch in TaskQueue. r=bholley
MozReview-Commit-ID: H1rhQPBU00L
2016-01-05 16:35:17 +13:00
Gregory Szorc
33ce723300 Bug 1256535 - Disable C4577 to unblock compilation on VS2015; r=poiru
The previous disabling of this warning on just Key.cpp was not
sufficient because another file from the unified sources list appears
to include the header exhibiting the warning.

MozReview-Commit-ID: rR2XXigTJU

--HG--
extra : rebase_source : b34b42fd729163775cdb2e4c50bb0e6099824112
2016-03-14 21:44:22 -07:00
Jean-Yves Avenard
adf9b13ff5 Bug 1230641: P2. Increase the video queue size on mac. r=cpearce
The mac decoder when used on intel GPU gives bad performance due to locking. Increasing the queue size allows to alleviate most problems.

MozReview-Commit-ID: 3yQ3btiMqvk

--HG--
extra : rebase_source : 17951db2769b2cd56742ba420f08b3f5ebc2436d
2016-03-15 11:54:19 +11:00
Jean-Yves Avenard
7b7d669844 Bug 1230641: P1. Use UYVY (YUV422) format in decoders. r=mattwoodrow
MozReview-Commit-ID: I6KZLi2bHk0

--HG--
extra : rebase_source : b233233878ed386c9635614d70e79b0d16071d92
2016-03-15 11:41:00 +11:00
Steve Fink
57bca06b15 Backed out changeset 901b1c651c98 (bug 1246804)
--HG--
extra : rebase_source : d80a34f467275bf74672b87fd09a254b39ee20a1
2016-03-14 21:58:31 -07:00
Steve Fink
5097fa6f84 Backed out changeset c73617bdfdfa (bug 1250709)
--HG--
extra : rebase_source : c67c2cf17911584a3d8c9eba78da8763b18c3aaf
2016-03-14 21:58:29 -07:00
Steve Fink
1a085c7e18 Backed out changeset b5bffc375719 (bug 1250709)
--HG--
extra : rebase_source : 82d8f0abf73814d6048c9bf057494a9be70cb487
2016-03-14 21:58:27 -07:00
Steve Fink
3e00b94858 Backed out changeset 66445d3d11de (bug 1250709)
--HG--
extra : rebase_source : c8fb3f53bcf989e82ef00fb0f9acbcc4f09cc34c
2016-03-14 21:58:26 -07:00
Steve Fink
3afb19a035 Backed out changeset 5b48be011a93 (bug 1250709)
--HG--
extra : rebase_source : 5f95c8a73fb6302fa3898691c7bde93b7a5bebcb
2016-03-14 21:58:25 -07:00
Steve Fink
0e33cb9494 Backed out changeset 68e3c6430121 (bug 1250709)
--HG--
extra : rebase_source : bd6f14119dbae180817ddcfbfd9d57d2c7afc0b0
2016-03-14 21:58:24 -07:00
Gregory Szorc
1153138e92 Bug 1256535 - Disable C4577 to unblock compilation on VS2015; r=poiru
As part of unblocking building with VS2015u1 in automation, I'm mass
disabling compiler warnings that are turned into errors. This is not
the preferred mechanism to fix compilation warnings. So hopefully
this patch never lands because someone insists of fixing the underlying
problem instead. But if it does land, hopefully the workaround is
only temporary.

MozReview-Commit-ID: CnmHTfEZpBK

--HG--
extra : rebase_source : acf0a7fad4efc35e7f7281023aec7056bd2049ee
2016-03-14 21:24:54 -07:00
Gregory Szorc
062d2e4c6b Bug 1253436 - Write out a machine readable file with binaries metadata; r=glandium
This will make it easier for binaries only archive generation to consult
the list of binaries that are relevant to packaging.

This does overlap somewhat with compile databases. Perhaps someday the
logic could converge.

While I was here, I cleaned up writing of the all-tests.json file to
avoid an intermediate string variable.

This patch adds to_dict methods on some frontend data types. There is
room to improve the serialization of these types. For example, we could
use __slots__ to drive the default formatter. We could also leverage a
custom JSONEncoder class that knows how to call to_dict() on instances.
In the spirit of perfect is the enemy of done, I think this should be
deferred to a follow-up bug.

MozReview-Commit-ID: XVnKB1MNqu

--HG--
extra : source : 4167dfdf10457360c9c94ee6e55b03ef1b92c16d
extra : histedit_source : 2f3f10bbb8ef9da8c57b0d85cbf4ea80242eff1a%2C1a5654253181d75eecd5dfaca2c87e353f8126cd
2016-03-14 21:06:57 -07:00
Gregory Szorc
17a8e3c459 Bug 1253436 - Add __repr__ to BaseLibrary and BaseProgram; r=glandium
Now when we print instances in a debugger, we'll see something like:

<StaticLibrary: other-licenses/snappy/libother-licenses_snappy.a>
<StaticLibrary: toolkit/library/StaticXULComponentsEnd/libStaticXULComponentsEnd.a>
<SharedLibrary: toolkit/library/XUL>
<StaticLibrary: toolkit/library/libxul_s.a>
<HostProgram: config/nsinstall_real>
<Program: memory/replace/logalloc/replay/logalloc-replay>
<SimpleProgram: mfbt/tests/TestArrayUtils>

... instead of the the class name and memory address.

MozReview-Commit-ID: 8zdrM6KfP8U

--HG--
extra : source : 84849ad026c9ba1bbf71c93172b0a03440e51bec
2016-03-11 11:22:48 -08:00
Gregory Szorc
6bc67323f6 Bug 1253436 - Remove unused imports; r=glandium
MozReview-Commit-ID: 494hmTwyldH

--HG--
extra : source : c4a868c76959d3a2e13af6ca5adb0d629dcb2b34
2016-03-11 11:22:28 -08:00
Steve Fink
842e7c17b9 Bug 1250709 - Clobber builds, r=terrence
--HG--
extra : rebase_source : c0eaa726c093d35de253df29ca60c13366ccab31
2016-02-24 15:14:17 -08:00
Steve Fink
029f79cc6c Bug 1250709 - Implement shell-only hazard analysis job, r=garndt
--HG--
extra : rebase_source : 554c5c804827a2b0ae3fd8967d2df002892c823c
2016-02-15 16:54:01 -08:00
Steve Fink
a53536bc24 Bug 1250709 - Upgrade browser to gcc 4.9.3, r=glandium
--HG--
rename : b2g/dev/config/tooltool-manifests/linux64/releng.manifest => b2g/dev/config/tooltool-manifests/linux64/hazard.manifest
rename : browser/config/tooltool-manifests/linux64/releng.manifest => browser/config/tooltool-manifests/linux64/hazard.manifest
extra : rebase_source : 8faa80ed36a21e8e691fefa6f6921531e67e603e
2016-02-11 16:06:00 -08:00
Steve Fink
53ed8c4181 Bug 1250709 - Taskcluster-based browser rooting hazard analysis, r=garndt
--HG--
extra : rebase_source : 3223926ea521639f910093e54297eab38e3a60e1
2016-02-15 21:06:42 -08:00
Steve Fink
94c649bd66 Bug 1250709 - Extract out hazard logic to a separate file, r=garndt
--HG--
extra : rebase_source : a839a3245afeeaaf6c20c82058448ba57ff17d57
2016-02-11 20:28:08 -08:00
Steve Fink
2dada4b1a0 Bug 1246804 - Switch to using in-source annotations. Use C++ inheritance information when describing GC types. Add a test suite., r=terrence
MozReview-Commit-ID: HCcG2k8Wyb9

--HG--
extra : rebase_source : 4b048fdcb150662c82e1b623e455551cc7281251
2015-09-29 13:39:33 -07:00
Timothy Nikkel
5263f50634 Bug 1251150. Add crash annotations if image visibility is re-entering. r=mats 2016-03-14 22:59:02 -05:00
L. David Baron
8c5857d870 Bug 1256500 - Root style contexts before calling ApplyStyleFixups. r=heycam
MozReview-Commit-ID: 8P4AyTCvhmW
2016-03-14 20:26:53 -07:00
Phil Ringnalda
d5bd282a1b Back out 3 changesets (bug 1253436) for build bustage on a CLOSED TREE
Backed out changeset 4167dfdf1045 (bug 1253436)
Backed out changeset 84849ad026c9 (bug 1253436)
Backed out changeset c4a868c76959 (bug 1253436)
2016-03-14 20:22:29 -07:00
Gregory Szorc
1fa003c29e Bug 1256482 - Disable C4312 to unblock compilation on VS2015; r=jesup
As part of unblocking building with VS2015u1 in automation, I'm mass
disabling compiler warnings that are turned into errors. This is not
the preferred mechanism to fix compilation warnings, of course.

Given that the warning is in WebRTC which is third party code, there
isn't much we can do about the warning. However, Google is building
Chrome with Visual Studio 2015, so I wouldn't be surprised if this
were fixed upstream or will be fixed upstream. Then again, we allow
warnings when building WebRTC. So perhaps not.

MozReview-Commit-ID: G6JP9fkCzfn

--HG--
extra : rebase_source : bf5c9a049230bb8e483f6a85bdbc2ca20eb3ab45
2016-03-14 16:05:06 -07:00
Morris Tseng
0f88c1a15b Bug 594933 - Part 2: Add support for calc() to line-height. r=dbaron
--HG--
extra : commitid : ISfJfHKpK5Z
2016-03-15 10:37:37 +08:00
Morris Tseng
99b819272d Bug 594933 - Part 1: Let calc() supports number. r=dbaron
--HG--
extra : commitid : HWZIwem6z6u
2016-03-15 10:37:37 +08:00
Gregory Szorc
b7a0aef870 Bug 1253436 - Write out a machine readable file with binaries metadata; r=glandium
This will make it easier for binaries only archive generation to consult
the list of binaries that are relevant to packaging.

This does overlap somewhat with compile databases. Perhaps someday the
logic could converge.

While I was here, I cleaned up writing of the all-tests.json file to
avoid an intermediate string variable.

This patch adds to_dict methods on some frontend data types. There is
room to improve the serialization of these types. For example, we could
use __slots__ to drive the default formatter. We could also leverage a
custom JSONEncoder class that knows how to call to_dict() on instances.
In the spirit of perfect is the enemy of done, I think this should be
deferred to a follow-up bug.

MozReview-Commit-ID: XVnKB1MNqu

--HG--
extra : rebase_source : 376c93467dde3450c7c21cff918cb34913a3c5fe
2016-03-14 19:31:35 -07:00
Gregory Szorc
cd4ba92951 Bug 1253436 - Add __repr__ to BaseLibrary and BaseProgram; r=glandium
Now when we print instances in a debugger, we'll see something like:

<StaticLibrary: other-licenses/snappy/libother-licenses_snappy.a>
<StaticLibrary: toolkit/library/StaticXULComponentsEnd/libStaticXULComponentsEnd.a>
<SharedLibrary: toolkit/library/XUL>
<StaticLibrary: toolkit/library/libxul_s.a>
<HostProgram: config/nsinstall_real>
<Program: memory/replace/logalloc/replay/logalloc-replay>
<SimpleProgram: mfbt/tests/TestArrayUtils>

... instead of the the class name and memory address.

MozReview-Commit-ID: 8zdrM6KfP8U

--HG--
extra : rebase_source : 7f964ad44a0061674f77d5716a6769a4aedb9e6c
2016-03-11 11:22:48 -08:00
Gregory Szorc
7b3913cab5 Bug 1253436 - Remove unused imports; r=glandium
MozReview-Commit-ID: 494hmTwyldH

--HG--
extra : rebase_source : 998f2b447df9ba023d0b12d4d70563e76e3bf0f7
2016-03-11 11:22:28 -08:00
Jean-Yves Avenard
f6b7c1b48e Bug 1251184: [quicktime] P2. Use external plugin if available over native playback. r=cpearce
While almost identical to video/mp4, quicktime files often use codecs that we don't support: in particular MPEG4 part 2 and amr audio.
If a plugin exists and is enabled, prefer it to handle those files.

We only do so when opening the file directly. Media in <video> element will always play natively.

MozReview-Commit-ID: 1yPpzfDaCfT

--HG--
extra : rebase_source : 4c66eb0fd81a288f4c8eed643c79cf9851bd4273
2016-03-11 22:42:02 +11:00
Jean-Yves Avenard
4d457a83ad Bug 1251184: [quicktime] P1. Report video/quicktime mimetype when sniffing. r=cpearce
MozReview-Commit-ID: 9EJQVYt76Mh

--HG--
extra : rebase_source : 22b6c39ac8f8321b35c7cd5671730ccf902520da
2016-03-11 22:32:30 +11:00
Ryan VanderMeulen
035a81d617 Merge m-c to inbound. a=merge 2016-03-14 22:10:42 -04:00
Ryan VanderMeulen
046e8897a9 Bug 931445 - Disable test_pointerlock-api.html on Linux and Windows for frequent timeouts. 2016-03-14 20:55:56 -04:00
Wes Kocher
8350d308c3 Merge m-c to fx-team, a=merge
MozReview-Commit-ID: COpA4LGoMQN
2016-03-14 17:40:44 -07:00
Wes Kocher
3889b2d927 Merge inbound to central, a=merge
MozReview-Commit-ID: BlkarjwEXFl
2016-03-14 17:39:03 -07:00
Wes Kocher
2c04614f61 Backed out 5 changesets (bug 1253565) for test_ext_contentscript.html failures
Backed out changeset d50f024f55d8 (bug 1253565)
Backed out changeset 8a78c738b882 (bug 1253565)
Backed out changeset 1e47cefe3b9b (bug 1253565)
Backed out changeset c02c1dc34180 (bug 1253565)
Backed out changeset 398160abc223 (bug 1253565)

MozReview-Commit-ID: 4RN69nKhyYr
2016-03-14 11:16:28 -07:00
Florian Quèze
1735d00682 Bug 1255605 - search.json.mozlz4 should always contain search engines. r=adw 2016-03-14 18:45:33 +01:00
Benjamin Bouvier
49b4d6e62e Bug 1256291: Fix unified build under js/; r=Ms2ger
MozReview-Commit-ID: Amia14nqztf

--HG--
extra : rebase_source : 74b6b7dcfe7ccc408ad6be1e0cf87a42e5f9c98c
2016-03-14 14:22:51 +01:00
Alessio Placitelli
d5ca6b79e8 Bug 1242084 - nsTerminator::UpdateTelemetry() leaks 8 byte nsStringBuffer when app.update.channel gets set to Beta. r=gfritzsche 2016-03-14 06:12:00 +01:00
Shane Caraveo
9dd5be4a33 Bug 1255824 fix hidden state on startup when pocket button not available, r=gijs 2016-03-14 10:36:52 -07:00
Sebastian Kaspari
fb669505ac Bug 1255767 - ToolbarDisplayLayout: Only use baseDomain if it is available. r=margaret.
MozReview-Commit-ID: 6RXVwv9aN1K

--HG--
extra : rebase_source : de919a12228ef9b065d69459c3ac21728208a323
2016-03-14 12:24:47 +01:00
Sebastian Hengst
63d4fe806d Backed out changeset afe0a444c182 (bug 1093153) for mochitest-2 failures. r=backout 2016-03-14 17:45:36 +01:00
Sebastian Hengst
f088d1c311 Backed out changeset 5fa79c7ea7ae (bug 1093153) 2016-03-14 17:44:37 +01:00