Commit Graph

7686 Commits

Author SHA1 Message Date
Roger Yang
4204c43236 Close #26198: Add debounce to account manager syncs 2022-08-10 21:06:29 +00:00
Mozilla L10n Automation Bot
f356df785c Import l10n. 2022-08-10 07:26:01 +00:00
rxu
2a30213fc1 Add "manage account and devices" button to home menu in mozillaonline builds 2022-08-10 06:50:08 +00:00
Noah Bond
a77375a363 For #22558 - Fix private theme bug in Tabs Tray 2022-08-09 21:08:38 +00:00
Jonathan Almeida
f03ee91ecb Close #26041: Re-set TrackingProtectionPolicy after Nimbus SDK is initialized
There are three issues here that we have uncovered while investigating
this bug:

 1. Settings.kt has a lazy block around `enabledTotalCookieProtection`
    which ends up caching the first result it evaluates.
 3. The `FeatureHolder` within FxNimbus caches the incorrectly
    evaluated value and returns this value hence forth.
 4. Nimbus is not ready to return a result for an engine experiment
    when we need it early on in the dependency tree initialization.

There are multiple systems that require engine to be initialized for
 them to work (e.g. Glean, Profiler, concept-fetch). In our TCP,
 experiment, we need to apply these engine settings during the engine
 initialization. So when we try and evaluate Nimbus that early on, it
 has not had time to initialize itself correctly or even use the
 engine's concept-fetch client to return the correct experiment result.
 This bug is made worse because of the first two caching bugs where we
 are always holding onto a cached value of the wrong result.

Our temporary solution is to:

 1. Remove the `lazy` around `Settings.enabledTotalCookieProtection`.
 2. Set the `FxNimbus.api` value right after we are done initializing
    `FxNimbus` and `NimbusApi` so that all future queries to FxNimbus
    will be made against a real instance of `NimbusApi`. This is a
    short-term fix for the `FeatureHolder` caching bug.
 3. Set a new TrackingProtectionPolicy that will evaluate Nimbus now
    that it is in the correct state when receive the
    `NimbusInterface.Observer.onUpdatesApplied`.

Co-authored-by: jhugman <jhugman@users.noreply.github.com>
Co-authored-by: Christian Sadilek <christian.sadilek@gmail.com>
2022-08-09 19:33:00 +00:00
MatthewTighe
29a8c33ba5 Fixes #26377: re-open already opened recent synced tabs 2022-08-09 19:00:40 +00:00
Mozilla L10n Automation Bot
37745eb83d Import l10n. 2022-08-09 10:12:58 +00:00
Noah Bond
db0162465b For #26289 - Remove search term tab groups metrics and setting 2022-08-08 18:16:33 +00:00
rudmannn
8e8ea5e57a
Fix #26362: Use app:lineHeight to support API Level <= 27 (#26364)
* Fix android:lineHeight

Change android:lineHeight to app:lineHeight for incompatibilities at API Level <= 27

* Fix android:lineHeight (Part 2)

Change android:lineHeight to app:lineHeight for fixing incompatibilities in custom_search_engine

* Change android:lineHeight (Part 3)

Change android:lineHeight to app:lineHeight in settings_https_only for incompatibilities at API Level <= 27

* cleanup lint-baseline.xml

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2022-08-08 12:12:18 -04:00
Jan-Erik Rediger
06488cdabe Move startup perf measurements to a background thread
This is required to avoid loading the Glean core library (provided by libxul) early on.
Fenix needs to do the time measurement itself for now.
2022-08-08 14:10:36 +00:00
Alexandru2909
1a2b357119 For #26302 - Change header text height to wrap_content for autofill add/edit screens 2022-08-08 05:37:09 +00:00
Mozilla L10n Automation Bot
9255d351fd Import l10n. 2022-08-08 00:39:10 +00:00
Mozilla L10n Automation Bot
4f77d2966b Import l10n. 2022-08-07 00:43:28 +00:00
Mozilla L10n Automation Bot
4379b06288 Import l10n. 2022-08-06 00:39:20 +00:00
indu
1488e8e87b For #26236: Fix breaking change from AC regarding exitImmersiveModeIfNeeded
This will allow Fenix to use the refactored method name 'exitImmersiveMode' in Activity from Android Components library

Co-Authored-By: Mugurell <Mugurell@users.noreply.github.com>
2022-08-05 15:25:39 +00:00
Mozilla L10n Automation Bot
926daabe1f Import l10n. 2022-08-05 00:40:01 +00:00
AndiAJ
c356982a4d For #26144 new App-like experience in PWAs UI test 2022-08-04 19:28:09 +00:00
AndiAJ
9a6d7f5bbd For #26286 new verifyRemoveTopSiteFromMainMenu UI test 2022-08-04 14:35:34 +00:00
AndiAJ
7e06d48bcb For #25926 disable failing mainMenuOpenInAppTest UI test 2022-08-04 11:54:48 +00:00
Mozilla L10n Automation Bot
dd563b19f0 Import l10n. 2022-08-04 01:10:03 +00:00
Noah Bond
8656fd48eb For #26227 - Remove search term tab groups from Jump Back In 2022-08-04 00:10:47 +00:00
Mugurell
aa992263d6 For #26172 - New CFR popup composable
This will allow for pinpoint accuracy when anchoring and resolve any color
disparities between the popup body and the indicator arrow by having everything
drawn programmatically as one shape.

Because of the async nature of the values for insets and screen rotation
immediately after an orientation change the popup will automatically get
dismissed to prevent any anchoring issues.
While not ideal the effect of this is better than accepting layout issues after
orientation changes and is the same approach used for other of our popups.
2022-08-03 19:04:31 +00:00
Alexandru2909
ec4ad984c2 For #26239 - Avoid displaying multiple download items for the same file 2022-08-03 11:49:42 +00:00
AndiAJ
f239a24d48 For #26286 new undoDeleteHistoryItemTest UI test 2022-08-03 05:51:31 +00:00
Christian Sadilek
7ddc50017e Revert "For #26227 - Remove search term tab groups from Jump Back In"
This reverts commit fa00527dc6.
2022-08-03 02:39:42 +00:00
Christian Sadilek
b24650c449 Revert "For #26227 - Remove search term tab groups from Recently Visited"
This reverts commit c45e4b4ac5.
2022-08-03 02:39:42 +00:00
Arturo Mejia
bddac731d5 For #26283: Use message buttonLabel in MessageCard. 2022-08-03 01:54:13 +00:00
Mozilla L10n Automation Bot
4ee1b6da9e Import l10n. 2022-08-03 00:36:46 +00:00
Noah Bond
c45e4b4ac5 For #26227 - Remove search term tab groups from Recently Visited 2022-08-02 22:46:10 +00:00
Noah Bond
fa00527dc6 For #26227 - Remove search term tab groups from Jump Back In 2022-08-02 22:46:10 +00:00
MatthewTighe
9fb6eeb8cf Fixes: #26052 remove WallpaperManager::updateWallpaper 2022-08-02 21:33:54 +00:00
Alexandru2909
acf9206fe1 For #25837 - Invalidate cached nimbusValidation values when changing locale settings 2022-08-02 07:45:13 +00:00
Mozilla L10n Automation Bot
1cf34a5ac4 Import l10n. 2022-08-02 01:35:29 +00:00
AndiAJ
39a4a7c275 For #25926 disable failing testDownloadPrompt UI test 2022-08-01 10:07:14 +00:00
Mozilla L10n Automation Bot
c80195064f Import l10n. 2022-08-01 00:39:20 +00:00
Mozilla L10n Automation Bot
b57ff63707 Import l10n. 2022-07-31 00:45:15 +00:00
Mozilla L10n Automation Bot
77a6381520 Import l10n. 2022-07-30 00:42:27 +00:00
MatthewTighe
767d604315 Fixes #26029: Add wallpaper state to AppStore 2022-07-29 22:18:19 +00:00
Alexandru2909
7d85a9d274 For #26221 - Use favicon instead of ic_globe for composed tab grid item 2022-07-29 13:06:48 +00:00
Mozilla L10n Automation Bot
5e58ace753 Import l10n. 2022-07-29 00:42:02 +00:00
mike a
6483e1c647 Closes #25942: use HistoryFragment to show synced history 2022-07-28 20:53:36 +00:00
Mozilla L10n Automation Bot
cf21e02182 Import l10n. 2022-07-28 00:38:34 +00:00
Roger Yang
015b79f833 For #26061: Make sure favicons are cropped correctly 2022-07-27 22:11:13 +00:00
mcarare
11a7085e46 For #26197: Cancel history list update on fragment destroyed. 2022-07-27 18:06:56 +00:00
Mozilla L10n Automation Bot
d48bb493e7 Import l10n. 2022-07-27 00:48:42 +00:00
mike a
063a09782a Issue #26101: add telementry for deleting history time range 2022-07-26 20:59:16 +00:00
mcarare
4f18bcd488 For #22692: Remove Metropolis font file issues from baseline lint. 2022-07-26 16:39:29 +00:00
mcarare
4b5b15aa53 For #22692: Remove Metropolis font. 2022-07-26 16:39:29 +00:00
Gabriel Luong
db38b722a2 For #26180 - Renew telemetry expiring in 106 2022-07-26 15:58:27 +00:00
Alexandru2909
335159cef5 For #25891 - Move GridViewHolder to compose 2022-07-26 09:17:09 +00:00