Commit Graph

479615 Commits

Author SHA1 Message Date
Andrew Comminos
bda41a5e45 Bug 594876 - Enable layers acceleration by default on Linux. r=nical
MozReview-Commit-ID: HmgbkL35nth

--HG--
extra : rebase_source : c063cd96d66534ea66ec6edc006bc5b409fc6eba
2016-06-17 14:50:33 +01:00
Andrew Swan
cec4729686 Bug 1280636 Call updatePollFds() on error on sentinel fd r=kmag
MozReview-Commit-ID: DCpxwsf65q0

--HG--
extra : rebase_source : de92cbf2da30cdf1a8971c28b0fe9b01c96fe24e
2016-06-17 09:29:06 -07:00
Dylan Roeh
20f64ce5b6 Bug 1257454: Capture thumbnails for tabs even if tab overview is not currently shown. r=snorp 2016-06-17 16:00:45 +01:00
Richard Marti
6709abc048 Bug 1273974 - Remove the asymmetric margin from Add-on manager content. r=Gijs
--HG--
extra : rebase_source : e75d06ae30833ab09cc3014603a540d765d310cf
2016-06-16 19:29:22 +02:00
Timothy Guan-tin Chien
9ed4429e08 Bug 1231701 - Ship our own variant of EmojiOne on Windows and Linux, r=glandium, r=dolske, r=jfkthame, r=gerv
This patch bundles a color font named "EmojiOne Mozilla", and turn on
the necessary code for including the bundled font, on Linux and Windows.
With that, users of Linux and Windows <=8.0 is able to see color Emoji
on Firefox without support from System.

The font bundled is the v0.2.1 version, generated from the project repo
in

https://github.com/mozilla/emojione-colr

with artwork from the original EmojiOne font and Twemoji,
under CC BY 4.0 license.

Test files, about:license page, and the packager instruction are
modified accordingly.

MozReview-Commit-ID: 2mmxnA0vS3u
2016-06-15 21:58:49 +01:00
Jonathan Kew
8529c19f12 Bug 1231701 - Add valgrind suppression for uninitialized memory access and leak in old fontconfig. r=njn 2016-06-17 16:30:07 +01:00
Dylan Roeh
35f22f7ca8 Bug 1280594 - Pause the compositor directly instead of bouncing off the Gecko thread. r=snorp 2016-06-17 16:03:57 +01:00
Mark Hammond
367f33f78d Bug 1279224 - remove all Sync promotions from doorhangers. r=adw
MozReview-Commit-ID: 8QELFxqM6Av

--HG--
extra : rebase_source : e76d93d5096e9f820238645a9ac2db658f815718
2016-06-15 13:43:25 +01:00
Masayuki Nakano
0137cf7bf6 Bug 1280513 part.2 WinMouseScrollHandler should use LazyLogModule instead of PR_NewLogModule() r=m_kato
For making WinMouseScrollHandler MOZ_LOG* environment variables aware, WinMouseScrollHandler should use LazyLogModule.

MozReview-Commit-ID: ERurkwVX2Fb

--HG--
extra : rebase_source : 4dd1b257b075eb32328f628edac3cbcc1cbf6210
2016-06-17 03:10:06 +09:00
Masayuki Nakano
a369ad3acf Bug 1280513 part.1 Rename LogKeyStateImpl() to MouseScrollHandler::MaybeLogKeyState() r=m_kato
MozReview-Commit-ID: DGDrRO3Y9jD

--HG--
extra : rebase_source : d1b8253ab276a115b8b3a17c9646b05427bcc4dc
2016-06-17 03:03:44 +09:00
Jared Wein
217642efe0 Bug 1251071 - "New bookmark" popup disappears if I reopen it after creating bookmark. r=mak
MozReview-Commit-ID: DNqcu5vxrBG

--HG--
extra : rebase_source : 4a8c49ca01ca6987b43b3c1bffcbdd406ca98f70
2016-06-12 15:53:38 -04:00
Dão Gottwald
acbe92a947 Bug 1280391 - Merge UI migration steps that try to add bookmarks-menu-button. r=mak 2016-06-17 10:43:26 +01:00
Marco Bonardo
7c23d539a6 Bug 1280251 - Remove leftover references to unifiedComplete pref. r=past
MozReview-Commit-ID: 9GQ6u7V6tKs

--HG--
extra : rebase_source : 579d95b007a9712a0247406d7ec0b4f6dec699ef
2016-06-16 15:06:07 +01:00
Carsten "Tomcat" Book
ecdef8e6f4 merge mozilla-inbound to mozilla-central a=merge 2016-06-17 00:32:10 +01:00
Carsten "Tomcat" Book
2f4b689b50 merge fx-team to mozilla-central a=merge 2016-06-17 00:30:21 +01:00
Carsten "Tomcat" Book
ecad056c91 Backed out changeset 6ba1398db335 (bug 1231701) for causing valgrind failures 2016-06-16 18:31:16 +01:00
Martin Giger
6ef9c40b41 Bug 1267221 - Add 'error' field to WebNavigation onErrorOccurred details. r=rpl,aswan
MozReview-Commit-ID: HC8Lro9J4XF
2016-06-16 11:23:10 +02:00
Gregory Szorc
6011245964 Bug 1279563 - Clone unified Firefox repository; r=glandium
https://hg.mozilla.org/firefox now exists. It is a unified Firefox
repository containing the heads of all the major Firefox repos
(mozilla-central, inbound, aurora, beta, release, esrs, etc).

Having 1 unified repository is more useful and incurs less overhead
than N separate repos. We want to encourage the use of the unified
repository. So, we start cloning from it.

The unified repo on the server is configured in such a way that
manifest delta chains can become very long - over 30,000 deltas. This
can make manifest reading very slow and slow down many Mercurial
operations. The server compensates for this by setting
format.maxchainlen=10000 to limit the delta chains to 10,000.
Unfortunately, this setting is not preserved when clients do a
traditional clone: the changegroup consists of a single delta chain
and the client will use its own settings (often the default) to
break the chain. This will result in the client re-creating very long
delta chains. So, as part of initializing the new repo we configure
format.maxchainlen in its .hg/hgrc so it doesn't suffer from this
performance issue.

We could achieve the same result by passing the --config option to
`hg clone`. However, the option won't be preserved in the repo's
.hg/hgrc and subsequent `hg pull` operations could result in the
creation of very long delta chains. So we need to write the config
option in the .hg/hgrc. `hg clone` is equivalent to `hg init` +
`hg pull` anyway, so we just separate out the steps and insert a
write to .hg/hgrc in between.

We also set the "default" path (like `hg clone` would do).

DONTBUILD (NPOTB)

MozReview-Commit-ID: Fs4cz9YvdCv

--HG--
extra : rebase_source : 99e8239415f74d078c9a1a903355175cb54a8184
extra : amend_source : ee4bc9ef2b89fabdae6f14d0ab10ca12dc08b15d
2016-06-16 09:46:24 +01:00
Gregory Szorc
bf4ae47d54 Bug 1279563 - Offer to clone Firefox source repo during bootstrap; r=glandium
I've always been bothered that the one-line bootstrap configures your system
then leaves you on the hook to clone source code and configure the build
system. I'd like the bootstrap wizard to guide you through end-to-end.

This commit addresses part of the disconnect by offering to clone the
Mercurial source repository at the end of bootstrap.

We only offer to clone if we aren't running from a Firefox source checkout
(likely the one-line bootstrap invocation) and if we are in interactive
mode.

I'd like to eventually offer Git support here. Mercurial is the canonical
repo, so it makes sense to start with that.

MozReview-Commit-ID: 6TSZwxB3702

--HG--
extra : rebase_source : 5c35408a4f0e59d681ca28e5b23359c54927b513
extra : amend_source : f980b972e35a17e733e704e47efdd773b3633e45
2016-06-16 09:42:32 +01:00
Carsten "Tomcat" Book
a967cdb984 merge mozilla-inbound to mozilla-central a=merge 2016-06-16 08:06:50 +01:00
Alastor Wu
5a58cdb291 Bug 1239372 - only pause video during draging. r=jaws
MozReview-Commit-ID: F1vNDqMvKVK

--HG--
extra : rebase_source : 5ae2d3c85ebff734d090bf61a757ef6e1cfd4708
2016-06-15 15:29:18 +01:00
Thomas Wisniewski
2e6fa0f5fe Bug 918733 - have overrideMimeType throw INVALID_STATE_ERR if the XHR is in the DONE or LOADING states. r=sicking 2016-06-13 21:56:15 -04:00
Gregory Szorc
497ef8f99b Bug 1280022 - Fix gratuitous syntax error; r=me
DONTBUILD (NPOTB)
2016-06-15 23:00:16 +01:00
Gregory Szorc
84f709c221 Bug 1280022 - Search for hg.exe on Windows; r=glandium
Without this, we attempt to execute "hg" as a native Win32 program
and get the dreaded "%1 is not a valid Win32 application" error because
"hg" has a shebang and only executes inside a UNIX-like shell.

MozReview-Commit-ID: 5sUrxh1IxFC

--HG--
extra : rebase_source : b01d9b2f8ffc60da320f51a1b7e8a398781c373a
2016-06-15 22:49:11 +01:00
Christoph Kerschbaumer
4fcd57ace7 Bug 1280198 - Convert zipwriter/test/unit/test_asyncadd.js to use channel.open2() r=kmaglione 2016-06-15 16:48:55 +01:00
Carsten "Tomcat" Book
5f482a04ff Backed out changeset dc114bc5a88e (bug 1272239) for test failures in own test
--HG--
extra : rebase_source : 333768aab2f99c2a56a3717a09947e1e6b0e234d
2016-06-15 22:17:26 +01:00
Carsten "Tomcat" Book
b9a51d9fa5 Backed out changeset ed0b3881c1c4 (bug 1272239)
--HG--
extra : rebase_source : ef6dd065ff8c1dd3eb1a88da8267a4d08ad92bbc
2016-06-15 22:16:54 +01:00
Carsten "Tomcat" Book
89258073ec Backed out changeset 5042da9fc11c (bug 1272239)
--HG--
extra : rebase_source : 0e07e6c6ce691e88e031db6b09d8aab50dce3930
2016-06-15 22:16:52 +01:00
Jonathan Kew
a4f0cbcda7 Bug 1279814 - Update mIsoRunLast index when handling PDI. r=xidorn 2016-06-15 22:04:48 +01:00
Sebastian Hengst
47f0d2bc81 Backed out changeset a3f3f077a1ec (bug 1264948) for 'warning treated as error' build failure in JitAllocPolicy.h at least on Windows XP. r=backout on a CLOSED TREE 2016-06-15 19:20:29 +02:00
Sebastian Hengst
44e3577953 Backed out changeset ceb7ec4fd334 (bug 1264948) 2016-06-15 19:19:04 +02:00
Sebastian Hengst
03411b6526 Backed out changeset 8dfdec5ed99b (bug 1264948) 2016-06-15 19:19:00 +02:00
Sebastian Hengst
f2da8129aa Backed out changeset 8e99a0d76e62 (bug 1264948) 2016-06-15 19:18:57 +02:00
Sebastian Hengst
5f3aee96a7 Backed out changeset c1c123367921 (bug 1264948) 2016-06-15 19:18:53 +02:00
Sebastian Hengst
cb4c0e496d Backed out changeset 46d50a87b3b5 (bug 1264948) 2016-06-15 19:18:03 +02:00
Sebastian Hengst
fa09ca3da8 Backed out changeset 831077a22f58 (bug 1264948) 2016-06-15 19:17:59 +02:00
Sebastian Hengst
299ca506e6 Backed out changeset 87f37f6cde59 (bug 1264948) 2016-06-15 19:17:55 +02:00
Cervantes Yu
28706c5d87 Bug 1275398 - Use shmem for sending image data in IPCDataTransfer. r=nical
MozReview-Commit-ID: 9XETnSBXxEW
2016-06-16 00:57:46 +08:00
Cervantes Yu
3115f628a1 Bug 1272018 - Use shared memory to transfer drag image data. r=nical
MozReview-Commit-ID: K5r9LBQ1FO0
2016-06-15 13:49:13 +01:00
Luke Wagner
f3398cf009 Bug 1276028 - Baldr: address review comments (r=bbouvier)
--HG--
extra : rebase_source : 974c969fb580b41396aa25e78f379efac96487d8
2016-06-15 06:02:34 +01:00
Nicolas B. Pierron
9c080f9614 Bug 1264948 - IonBuilder::addOsrValueTypeBarrier, check for OOMs when unboxing OSR values. r=h4writer 2016-06-15 16:27:18 +00:00
Nicolas B. Pierron
7551aa899d Bug 1264948 - IonBuilder::inlineArray, check for OOMs when creating array elements without resume points. r=h4writer 2016-06-15 16:27:18 +00:00
Nicolas B. Pierron
1710de95c9 Bug 1264948 - MBasicBlock::inherit, check for OOMs when allocating Phi nodes. r=h4writer 2016-06-15 16:27:18 +00:00
Nicolas B. Pierron
9676f23598 Bug 1278303 part 4 - Fix correctness issue of MCreateThis new-target operand index. r=efaust 2016-06-15 16:27:18 +00:00
Nicolas B. Pierron
e7fa0b9e88 Bug 1278303 part 3 - Use a macro to define a list of getOperand accessors. r=jandem 2016-06-15 16:27:18 +00:00
Nicolas B. Pierron
c70ce7ef1f Bug 1278303 part 2 - Add MInstruction::New(TempAllocator::Fallible, ...) overload to all trivial MIR Instructions. r=jandem 2016-06-15 16:27:18 +00:00
Nicolas B. Pierron
6d57ca85cc Bug 1278303 part 1 - Prevent uses of TempObject new operator on MIR Instructions. r=jandem 2016-06-15 16:27:18 +00:00
Nicolas B. Pierron
c1242e255e Bug 1264948 - MBasicBlock::addPredecessor, check for OOMs when allocating Phi nodes. r=h4writer 2016-06-15 16:27:18 +00:00
Nicolas B. Pierron
6bf999e76d Bug 1264948 - IonBuilder::init, fixup 2016-06-15 16:27:18 +00:00
Nicolas B. Pierron
7076b72f19 Bug 1264948 - IonBuilder::init, reserve ballast space after freezing type sets. r=h4writer 2016-06-15 16:27:18 +00:00