Commit Graph

469382 Commits

Author SHA1 Message Date
Carsten "Tomcat" Book
dddbd2f44f merge fx-team to mozilla-central a=merge 2016-04-06 11:59:25 +02:00
Nick Fitzgerald
a114a69977 Bug 1253803 - Ensure that we maintain the focused node state when changing labels in the dominators view; r=jsantell 2016-04-04 17:36:00 +02:00
Kestrel
ba45045c35 Bug 1260360 - Purge cookies on clean shutdown according to sanitize preference. r=mconley 2016-04-05 01:46:00 +02:00
Jean-Yves Avenard
2686e88fdc Bug 1261129: Make VP9 sample data const. r=kentuckyfriedtakahe
MozReview-Commit-ID: 1VhEkxqLInz

--HG--
extra : rebase_source : 2915047cba83971618329a3f471e0a8e541dfe62
2016-04-01 14:23:07 +11:00
Makoto Kato
234456a100 Bug 1091515 - Don't set 64KB page size on aarch64. r=glandium
Linux/aarch64 supports vairous page size configuration.

(From https://www.kernel.org/doc/Documentation/arm64/memory.txt)
- 4KB + 3 levels
- 4KB + 4 levels
- 64KB + 2 leves

So we shouldn't set fixed 64KB page size on aarch64.


MozReview-Commit-ID: 8IdwBMUW4me

--HG--
extra : rebase_source : 2f3d8de3ea118313cb6dc5f48b7532d9b051c1e6
2016-04-05 18:54:42 +09:00
Jorg K
435ec5d98e Bug 233705 - remove mDontWrapAnyQuotes, mWrapToWindow and pref wrap_to_window_width. r=ehsan 2016-04-04 23:54:00 +02:00
Nick Fitzgerald
01cfd1d6c6 Bug 1248948 - Don't pass non-SavedFrame objects to SavedFrame JSAPI functions; r=tromey r=evilpie 2016-04-05 13:51:00 +02:00
Matt Woodrow
e725884022 Bug 1262304 - Add a pref to dump display lists for the content process. r=BenWa
--HG--
extra : rebase_source : 09ce025ea6029b1269f65e6e740b5166e8d15aa9
2016-04-06 15:29:57 +12:00
Matt Woodrow
ba8efb79a8 Bug 1258313 - Allow snapping of 'pseudo' 3d transforms. r=jrmuizel
--HG--
extra : rebase_source : df64389373ed7e880642dd39c9afd44a92db2423
2016-04-06 15:29:32 +12:00
Matt Woodrow
d74b963f8f Bug 1258313 - Add test for snapping transforms with perspective. r=jrmuizel
--HG--
extra : rebase_source : ce31b41a05ef2eeeedfe10bbdb65712c0f623b50
2016-04-06 15:29:23 +12:00
Kyle Huey
5063425777 Bug 1256049: Correctly handle databases currently performing maintenance when a new transaction is started. r=janv 2016-04-05 20:21:25 -07:00
Kyle Huey
f035a6ffcf Bug 1261471: Remove support for getting mozIDOMWindowProxy via GetInterface. r=mrbkap 2016-04-05 20:14:14 -07:00
Kyle Huey
dca62fc1ed Bug 1261814: Use the presence of the content global, and not any random global, to determine whether to run the close handler. r=bz 2016-04-05 20:12:56 -07:00
Kyle Huey
b98d3ef86c Bug 1259581: Remove MOZ_MEDIA_NAVIGATOR. r=jesup 2016-04-05 20:12:03 -07:00
Jim Chen
3fca182cf1 Bug 1222889 - Ignore selection change notifications when auto-completing; r=margaret
Adding the auto-completion text in the URL bar triggers selection change
notifications on Android 5.0 and above. That led us to think the user
changed the selection, and in turn commit the auto-completion. This
patch makes us ignore this edge case and preserve the auto-completion.
2016-04-05 21:54:12 -04:00
Jim Chen
8af38dfebc Bug 1260243 - Remove sendEventToGeckoSync and related code; r=me
We can remove GeckoAppShell.sendEventToGeckoSync and related code
because GeckoThread.waitOnGecko is replacing it.
2016-04-05 21:43:41 -04:00
Jim Chen
a8db6b0407 Bug 1260243 - Call GeckoThread.onPause/onResume in GeckoService; r=snorp
Inform Gecko of the Android process lifecycle by calling
GeckoThread.onPause and onResume, so that Gecko is more likely to be in
a consistent state if Android kills our process.
2016-04-05 21:43:41 -04:00
Jim Chen
2bb3a5b2e1 Bug 1260243 - Convert backgrounding/foregrounding GeckoEvent to native calls; r=snorp
Convert APP_BACKGROUNDING and APP_FOREGROUNDING events in GeckoEvent to
native calls onPause and onResume in GeckoThread, respectively.
2016-04-05 21:43:41 -04:00
Jim Chen
8318ca75b7 Bug 1260243 - Add GeckoThread.waitOnGecko; r=snorp
GeckoThread.waitOnGecko blocks the current thread and waits for previous
events on the Gecko thread to finish executing before continuing. This
is implemented by synchronously running a dummy event on the Gecko
thread. This patch also lets us get rid of sendEventToGeckoSync in
GeckoAppShell.
2016-04-05 21:43:40 -04:00
Jim Chen
2503738abf Bug 1259653 - Update Robocop tests; r=gbrown
This bug changed the meaning of profiles with empty names (""). It used
to mean the same thing as a null name, which represents the default
profile. However, the new behavior is that an empty name indicates a
custom profile. So the tests involving empty names are removed from
testGeckoProfile.
2016-04-05 21:43:40 -04:00
Jim Chen
c8b12009a6 Bug 1259653 - Respect the profile when starting GeckoService; r=snorp
In GeckoService, wait until we get an Intent before starting GeckoThread
using the profile information contained in the Intent.
2016-04-05 21:43:40 -04:00
Jim Chen
ef1800c548 Bug 1259653 - Support initializing GeckoThread with a specific profile; r=snorp
Add GeckoThread.initWithProfile that make it easy to target a particular
profile. The method succeeds when GeckoThread has not been initialized
or is already using the specified profile. It fails when the current
profile does not match the specified profile.
2016-04-05 21:43:40 -04:00
Jim Chen
d255ddc8dc Bug 1259653 - Make sure GeckoThread handles custom profiles; r=snorp
Make sure GeckoThread adds the appropriate profile arguments even for
custom profiles.
2016-04-05 21:43:40 -04:00
Jim Chen
04640791c8 Bug 1259653 - Treat custom profiles differently in GeckoProfile; r=margaret
Make sure we treat profiles under a custom directory differently. To
simplify things, custom profiles must already exist, and we don't
attempt to cache instances of GeckoProfile containing custom profiles.

Custom profiles are an edge use case (must be passed in via Intent
arguments) so I think it's reasonable to have this behavior change.
2016-04-05 21:43:40 -04:00
Jim Chen
d918431f74 Bug 1258554 - Only determine GeckoThread arguments when needed; r=snorp
Only determine GeckoThread arguments when GeckoThread has not been
started in GeckoApp. Otherwise, if GeckoThread has already started, we
don't need those arguments.
2016-04-05 21:43:40 -04:00
Jim Chen
c94ed37f77 Bug 1258554 - Don't touch GeckoApp from GeckoProfile; r=margaret
GeckoProfile.get() was reaching into GeckoApp to get and set the current
profile. I think now that GeckoThread is managing the profile, we don't
need that anymore. Also move the GuestSession check to getFromArgs, and
get rid of GeckoApp.getDefaultProfileName and
GeckoProfile.sIsUsingCustomProfile, which are redundant now.
2016-04-05 21:43:40 -04:00
Jim Chen
29cda83fe1 Bug 1258554 - Remove GeckoApp.mProfile; r=margaret
GeckoApp should not be caching the current profile.
2016-04-05 21:43:40 -04:00
Jim Chen
97eeab23f1 Bug 1258554 - Let GeckoThread manage the active profile; r=snorp r=margaret
Because Gecko itself can only handle one profile per process, we should
let the GeckoThread singleton manage our GeckoProfile instance on the
Java side, instead of using GeckoApp.
2016-04-05 21:43:39 -04:00
Chris Pearce
3bd89d1192 Bug 1261719 - Suppress MSVC warning C4595. r=glandium
C4595 is "'operator new': non-member operator new or delete functions may not be declared inline".
This warning is already suppressed for newer versions of clang.

MozReview-Commit-ID: GTzLtIGtpbR

--HG--
extra : rebase_source : 2782fff9796aedc976edf2c9820125f9b74c76e1
2016-04-04 10:34:22 +12:00
Alexander Surkov
62081fdb80 Bug 1261170 - add a single node ProcessContentInserted method version, r=yzen 2016-04-05 20:48:30 -04:00
Matteo Ferretti
d5459ac316 Bug 1239461 - Screenshot button for taking a screenshot of the current viewport; r=jryans
MozReview-Commit-ID: AMbzmf1uO0P

--HG--
rename : devtools/client/responsive.html/components/utils/l10n.js => devtools/client/responsive.html/utils/l10n.js
rename : devtools/client/responsive.html/components/utils/moz.build => devtools/client/responsive.html/utils/moz.build
extra : transplant_source : A%97_%C1d%AC%09%7C%E3%7F%0D%BCWl%8C%92V%09%1E%03
2016-03-30 22:31:37 +02:00
Nick Fitzgerald
c6425cbdee Bug 1221384 - Scroll the Tree component when focusing new items with the arrow keys; r=jsantell 2016-04-04 16:54:00 +02:00
Felipe Gomes
cdcf664fb3 Bug 1126299 - Disable intermittent browser_child_resource.js on e10s linux64 debug. r=RyanVM DONTBUILD
Relanding this with correct bug number

MozReview-Commit-ID: 3nMM2FMydnR
2016-04-05 23:58:47 -03:00
Felipe Gomes
3a5671b0dc Backed out changeset 0944b6e52af6 (bug 1252738)
MozReview-Commit-ID: y6qLZ9daxt
2016-04-06 00:00:25 -03:00
Felipe Gomes
5146def2cc Bug 1252738 - Disable intermittent browser_permissionsPromptDeny.js on e10s linux64 debug. r=RyanVM
MozReview-Commit-ID: KaT8IVJ5wkp
2016-04-05 23:58:47 -03:00
Mark Hammond
032db1a578 Bug 1262329 - don't log that Sync encountered an error writing previousFailed when there was no error. r=rnewman
MozReview-Commit-ID: 1VlcsvrPDUo

--HG--
extra : rebase_source : f53edfafd6bdf5aa617428931169c087a54c0da7
2016-04-05 19:10:26 -07:00
Kit Cambridge
1b26f871ce Bug 1257008 - Don't collapse the tab list when right-clicking on a device in the Synced Tabs sidebar. r=markh
MozReview-Commit-ID: JsaWLfMOYyC

--HG--
extra : rebase_source : 420fbc43630f308e5b8117f58bacb6529eccd9e5
2016-03-15 16:56:52 -07:00
Edouard Oger
9091ecd4f5 Bug 1251159 - Sync Tab Sidebar now shows clear filter button on osx properly. r=markh
MozReview-Commit-ID: BjTUiSqfOXF

--HG--
extra : rebase_source : 3b5d0570e3fc4f95d1e721640cfbc305995ea825
2016-04-05 18:37:42 -07:00
Kit Cambridge
70d984da1e Bug 1262021 - Ensure remote commands are applied once per sync. r=markh
MozReview-Commit-ID: 703efPknMrr

--HG--
extra : rebase_source : 22190464e99da70034bf36527a4b37aa51cf2132
2016-04-04 15:39:37 -07:00
Kit Cambridge
27aeea8089 Bug 1262312 - Don't update the device registration every time we open Sync preferences. r=markh
MozReview-Commit-ID: 1rJbD1hHOAe

--HG--
extra : rebase_source : 1e00e5c1d08047126c9a25f776d3df89e8c20281
2016-04-05 17:44:39 -07:00
Kit Cambridge
b9d8f2d371 Bug 1262310 - Fix opening synced tabs from the sidebar. r=markh
MozReview-Commit-ID: 8VHbEqsyuF2

--HG--
extra : rebase_source : 04924f295134834cf66c0d9c4a31d43c614b3abf
2016-04-05 17:06:00 -07:00
Drew Willcoxon
ee27759c39 Bug 1181078 - Implement new awesomebar popup design. r=mak
Based on an earlier patch by Marco Bonardo <mbonardo@mozilla.com>.

MozReview-Commit-ID: 7S0OoTGivbC
2016-04-05 18:56:54 -07:00
Nick Alexander
40af75617d No bug - Ensure Robocop can find GeckoProfile.getDB. r=me
MozReview-Commit-ID: 3KdDRXnsfHv

--HG--
extra : rebase_source : bc199c0f7d31d8079f7236a24f86ab99c7bbcb49
2016-04-05 16:10:52 -07:00
Michael Comella
351865c710 Bug 1258787 - Update tooltool manifests with checkstyle gradle deps. r=nalexander
Deps produced with gradle-dependencies task:
  https://treeherder.mozilla.org/#/jobs?repo=try&revision=05e799f77ff3

MozReview-Commit-ID: GySU3SuAU6G

--HG--
extra : rebase_source : ac025656d7f80b1ccc0dd7c308f3f0ed35ca6abe
2016-04-05 15:23:54 -07:00
Michael Comella
253cb20c34 Bug 1258787 - Add checkstyle to tasks to run for gradle deps; update watched files. r=nalexander
We now watch the gradle deps sub config too.

MozReview-Commit-ID: 37XTA4xnrFc

--HG--
extra : rebase_source : 4a81682feda87864cf892f0658a2ea816ab3bd50
2016-04-05 14:48:54 -07:00
Michael Comella
6d35ea935f Bug 1258787 - Add tier 2 TC checkstyle task. r=nalexander
Currently, this only runs on *.java but I believe checkstyle can also
do analysis on our xml files, so we may need to update this in the future.

MozReview-Commit-ID: 4F6vSHaUZed

--HG--
extra : rebase_source : 5347b55a0cfe8abbc81806a637296b467b7c7b0e
2016-04-04 16:37:34 -07:00
Thom Chiovoloni
640073c9d7 Bug 1246606 - Ensure a tooltip is present on the 'Sign in to sync' button in the customizable menu. r=markh 2016-04-05 14:52:00 -07:00
Margaret Leibovic
7ba9a0bb9e Bug 1254225 - Add a more descriptive text/description to "Show web fonts". r=sebastian
MozReview-Commit-ID: JlxTsmaGTv

--HG--
extra : rebase_source : f287a9b1f0e21f19ce119e67457e5eeccf0ac172
2016-03-23 15:22:11 -04:00
Margaret Leibovic
32a300b74b Bug 1251749 - Use UI telemetry to tell if settings are enabled or not. r=sebastian
MozReview-Commit-ID: B9CkxWYSi4y

--HG--
extra : rebase_source : ee8fef687f1e0e25c2da49b6cfaa19100383eaa3
2016-03-31 16:28:22 -04:00
Margaret Leibovic
ebeae9ab62 Bug 1261713 - (Part 4) Add test for getActiveExperiments. r=sebastian
MozReview-Commit-ID: 4VwUR1GXFcg

--HG--
extra : rebase_source : 1d7d05e6dc9434b2d20f4acb3682027045018e0d
2016-04-03 18:27:00 -04:00