Commit Graph

479633 Commits

Author SHA1 Message Date
Thomas Zimmermann
652b70fbd0 Bug 1276927: Add V4L ioctl 'VIDIOC_S_HW_FREQ_SEEK' if undefined by Linux, r=gsvelto
MozReview-Commit-ID: 5ZvrhwOyfYy
2016-06-15 10:59:49 +01:00
Thomas Zimmermann
5693604fd0 Bug 1276927: Fix breakpad to build on B2G, r=mshal
This patch unifies the include search directories for the breakpad
on B2G and Android, and protects breakpad-internal workarounds against
multiple definition.

As a side-effect of the patch set, no more Gonk-specific headers from
'gonk-include' are requried to build toolkit/ or xpcom/. The related
artifacts are removed by this patch.

MozReview-Commit-ID: E94I2rspDtJ
2016-06-15 10:59:49 +01:00
Thomas Zimmermann
79eb391273 Bug 1276927: Remove Bionic dependencies from Necko, r=valentin
B2G builds now use the header files from Android NDKs. Bionic is
not supported by the build any longer and Bionic features can't be
used anymore. This patch removes Necko's dependencies on Bionic
in favor of the respective Android code.

MozReview-Commit-ID: HP6jC22fLGn
2016-06-15 10:59:48 +01:00
Thomas Zimmermann
515c0bfac4 Bug 1276927: Remove Gonk from JS builds where possible, r=dvander
B2G/Gonk is just a special case of Android builds. Removing Gonk
code from JS builds simplifies the build process and maintenance.

MozReview-Commit-ID: 6mxm2Hqmx0c
2016-06-15 10:59:48 +01:00
Thomas Zimmermann
56695984b0 Bug 1276927: Fix DOM code to build with Android NDK, r=fabrice
MozReview-Commit-ID: KwW9O9DLFuy
2016-06-15 10:59:48 +01:00
Thomas Zimmermann
652691d85a Bug 1276927: Fix B2G sandboxing code to build with Android NDK, r=fabrice
This patch fixes an incorrect C++ namespace of STL datastructures.

MozReview-Commit-ID: FYx38sTzF4I
2016-06-15 10:59:48 +01:00
Thomas Zimmermann
12f1577aa6 Bug 1276927: Fix B2G widget code to build with Android NDK, r=fabrice
MozReview-Commit-ID: Acewzo0hNEE
2016-06-15 10:59:48 +01:00
Carsten "Tomcat" Book
eeea2c125f Backed out changeset ebeedb6959e8 (bug 1274265) for browser_broadcastchannel.js failures 2016-06-15 10:52:21 +01:00
Nicolas Silva
fc2766db56 Bug 1278437 - Null-check after allocating a tile's texture, before accessing it. r=jnicol 2016-06-15 11:30:46 +02:00
Andrea Marchesini
f1ac321990 Bug 1274265 - browser_broadcastchannel.js should not expose content promises to the rest of the test, r=jhao 2016-06-15 10:11:46 +01:00
Jonathan Watt
7972d9d526 Bug 1279966 - Stop using gfxContext device offsets on the temporary gfxContext in BasicLayerManager::PaintLayer. r=mattwoodrow 2016-06-15 10:06:11 +01:00
JW Wang
0618cbfada Bug 1280175 - Allow passing lvalue to MediaEventProducerExc<T>::Notify. r=gerald
MozReview-Commit-ID: 6Wr3obvkVXo

--HG--
extra : rebase_source : 09ae3a471caa065cdf908bf302d56fe33548157d
2016-06-14 15:25:45 +08:00
Bob Silverberg
53b6985242 Bug 1265845 - Implement browser.history.onVisited, r=aswan
MozReview-Commit-ID: 6jXEUA1Cll9

--HG--
extra : transplant_source : %FC%8Frg%7C2%25%A6%A0%FB%27%AB%DE%04Q%3E%83%BE%A6%EE
2016-06-08 12:42:13 -04:00
Kartikaya Gupta
e71c0859af Bug 1247050 - Avoid tripping an NS_ASSERTION that can legitimately fire. r=mstange
MozReview-Commit-ID: JpfBWiP3BeL

--HG--
extra : rebase_source : b571adf4124cc81fbc1833b55d61ad214f21b1d8
2016-06-15 01:27:21 +01:00
Henrik Skupin
ba658af935 Bug 1280017 - Fix version requirement specifier for external media tests. a=bustage
MozReview-Commit-ID: Izpe97GtzWp
2016-06-15 06:59:45 +01:00
Carsten "Tomcat" Book
3f12d50429 Merge mozilla-central to mozilla-inbound 2016-06-15 06:27:08 +01:00
Carsten "Tomcat" Book
58167fd092 merge mozilla-inbound to mozilla-central a=merge 2016-06-15 06:24:33 +01:00
Luke Wagner
a9533fbac8 Bug 1276028 - Baldr: address review comments (r=bbouvier) 2016-06-15 06:02:34 +01:00
Mike Hommey
ad42a406bd Bug 1278718 - Use the same setup for clang and binutils on TC as on buildbot. r=kmoir 2016-06-15 12:22:57 +09:00
Mike Hommey
422162d82a Bug 1278718 - Use clang 3.8 on ASAN builds. r=decoder 2016-06-15 12:22:56 +09:00
Mike Hommey
8b0e723ab3 Bug 1278718 - Build clang 3.8 with static libstdc++. r=froydnj
Use the resulting clang everywhere we are currently using clang 3.8.
2016-06-15 12:22:54 +09:00
Mike Hommey
068c777882 Bug 1279105 - Properly shutdown NSS after NSSInitCryptoContext was called. r=rstrong 2016-06-15 12:22:42 +09:00
Martin Stransky
12a9958342 Bug 1276534 - don't save/restore style context on arrows on menu, r=karlt 2016-06-13 05:28:00 +01:00
Jan Henning
5c94369e27 Bug 1279273 - Use correct synchronization object for session data parsing. r=sebastian
If the main thread has to wait for the session data parsing to finish - which is more likely when you've got many tabs open, meaning a large sessionstore.js file - it does so on "this", i.e. GeckoApp.
The session data parsing itself is done from within a Runnable, so we need to qualify "this" there if we want it to refer to GeckoApp itself, so we can successfully release any waiting threads through notifyAll().

MozReview-Commit-ID: 3LhJsI5rNU3

--HG--
extra : transplant_source : %27%27X%9CTm%A6%88%3F%1B%8Cm%0E4%F1%9D%9B%E5%F2%28
2016-06-12 19:45:50 +02:00
Bhavin Dave
d557789019 Bug 1279232 - Remove passwordmgr key-16.png from mobile theme. r=gijs 2016-06-14 09:31:00 +01:00
Jarda Snajdr
b57da2dc12 Bug 1278778 - Show JS stack traces of Fetch requests in Netmonitor r=bkelly 2016-06-14 04:08:00 +01:00
Jake Watkins
0f608ea219 Bug 1268187 - Enable taskcluster coalesce for linxu32 builds. r=coop, r=dustin
Enables taskcluster coalescing on opt_linux32 and dbg_linux32 builds
Thresholds for each build type are configured under the coalesce service

MozReview-Commit-ID: 9CVGQIJDhRf

--HG--
extra : transplant_source : %12%F0f%08%C0%84%E2%AE%A0%7E%DF%E6%D3%E9m%DB%60%97%91%FC
2016-06-09 11:00:44 -07:00
JW Wang
39a058508a Bug 1278772 - Use value semantics to facilitate compiler optimization. r=kinetik.
MozReview-Commit-ID: 2TAU0GFwasB

--HG--
extra : rebase_source : 4d664e84b15076564ed9ea88163b08712f1f6ca9
2016-06-08 15:26:28 +08:00
Kartikaya Gupta
bbfa56eb4c Bug 1260905 - Set a minimum bound on the velocity required for a fling to actually happen. r=rbarker
MozReview-Commit-ID: FTeJdUlffrM
2016-06-14 20:03:04 -04:00
Kaku Kuo
bf4a3e54b3 Bug 1276272 - part 4 - modify the mochitest; r=jwwang
MozReview-Commit-ID: 9DUpKblMbTz

--HG--
extra : rebase_source : eb1c236b882f1b8fd40e441215c918cef585e2a9
2016-06-05 22:15:49 +08:00
Kaku Kuo
9ace015fa5 Bug 1276272 - part 3 - implement promise-based HTMLMediaElement::seekToNextFrame(); r=jwwang
MozReview-Commit-ID: JaUQe5GK6bF

--HG--
extra : rebase_source : 63ffb58ca29776757cd869579e149a4330311e08
2016-06-09 20:27:39 +01:00
Kaku Kuo
5b76709f3e Bug 1276272 - part 2 - modify the webidl and preference setting; r=ehsan
MozReview-Commit-ID: INYkaXhe8gT

--HG--
extra : rebase_source : ee6029f930e8ee9bb4d8f9576faea8f827b2aae4
2016-06-03 16:52:10 +08:00
Kaku Kuo
487b3fb191 Bug 1276272 - part 1 - add Promise::MaybeRejectWithVode() utility method; r=ehsan
MozReview-Commit-ID: 4bBGsUNKbQS

--HG--
extra : rebase_source : 471c57479c41a0626a05df9aee5cb7027e352904
2016-06-09 20:26:47 +01:00
Martin Stransky
150a870af2 Bug 1275407 - Adds CSS contents node to have correct scrollbar background on Gtk >= 3.20. r=karlt
Also derive default widget style from widget path. r=?karlt
Patch from Bug 1250704 needs to land prior to this one.

--HG--
extra : rebase_source : b831bb11a7a0a00c4bf51f93e07a41f432c78ec1
2016-06-13 03:35:00 +01:00
Ehsan Akhgari
1db86caf2d Bug 1279618 - Don't touch the js::Class in JSObject::finalize() after having called the finalizer on it; r=jonco 2016-06-14 23:49:54 +01:00
Andrea Marchesini
6d673a6148 Bug 1276412 - Fix a typo in a comment - part 2, r=me 2016-06-14 23:10:25 +01:00
Andrea Marchesini
a0c3da6eec Bug 1276412 - Fix a typo in a comment, r=me 2016-06-14 23:05:48 +01:00
Tanvi Vyas
f98ee064d0 Bug 1276412 - Enable experimental containers feature for Nighlty to test the OriginAttributes platform work and get some validation on the idea. r=past 2016-06-14 22:41:36 +01:00
Tanvi Vyas
699a92d0e0 Bug 1276412 - Fix context menu test that doesn't account for New Container Tab option. r=past 2016-06-14 22:41:33 +01:00
stefanh@inbox.com
54acecac1d Bug 1280119 - Remove obsolete scrollbar constants in nsLookAndFeel.h. r=mstange. 2016-06-14 23:02:58 +02:00
Jonathan Watt
5c1ec02e49 Bug 1279789 - Remove the printing methods from gfxASurface. r=eflores 2016-06-14 19:26:40 +01:00
Jonathan Watt
c5bcf8c0ee Bug 1279790 - Remove PrintTargetThebes. r=eflores 2016-06-14 19:26:37 +01:00
Jonathan Watt
49f4f606aa Bug 1279788 - Create a PrintTargetWindows subclass of PrintTarget. r=eflores 2016-06-14 19:26:35 +01:00
Trevor Saunders
ea8a901a13 bug 1272712 - send a RoleChanged message when an accessible document's role changes r=davidb 2016-06-14 12:46:21 -04:00
Andrew Swan
4024904cc7 Bug 1270359 Implement connectNative on windows r=kmag
MozReview-Commit-ID: IHJuGt2Us8e

--HG--
extra : rebase_source : ca7374a13ad3c7c46ea8e0e4c73acaab0fa0a336
2016-06-09 15:10:54 -07:00
Andrew Swan
ad06bce348 Bug 1270359 Make MockRegistry a common test-only module r=kmag
MozReview-Commit-ID: DiLa3vfAh3R

--HG--
extra : rebase_source : 6e909f87b786affc3c476c85b758259321c31e41
2016-06-14 05:27:36 -07:00
Heiher
0d8db9555e Bug 1279970 - IonMonkey: MIPS: Clean dummy copysign. r=bbouvier
---
 js/src/jit/mips-shared/Lowering-mips-shared.cpp | 6 ------
 1 file changed, 6 deletions(-)
2016-06-14 23:29:06 +08:00
Sebastian Hengst
37bd76ddd9 Backed out changeset 5ad647bf5727 (bug 1276130) for web-platform-test failure invttcue-interface/align.html. r=backout 2016-06-14 17:21:02 +02:00
Sebastian Hengst
639bb51f2a Backed out changeset bb5ef5c3c8ac (bug 1276130) 2016-06-14 17:20:27 +02:00
Sebastian Hengst
31d07b0f52 Backed out changeset 212533217731 (bug 1276130) 2016-06-14 17:20:23 +02:00