Jonathan Almeida
8cc83017b2
[fenix] Issue https://github.com/mozilla-mobile/fenix/issues/19002 : Correct naming of pager viewholders
2021-05-11 19:40:14 +04:00
Jonathan Almeida
cf9a9dd6dc
[fenix] Issue https://github.com/mozilla-mobile/fenix/issues/19002 : Use a single BrowserTrayList for normal/private list
...
We now have a BrowserTrayList.
- Renamed from `BaseBrowserTrayList`.
- Removed the abstract `configuration` and used a `lateinit var`
instead.
- Removed `NormalBrowserTrayList` and `PrivateBrowserTrayList`.
2021-05-11 19:40:14 +04:00
Jonathan Almeida
9ace0c8551
[fenix] Issue https://github.com/mozilla-mobile/fenix/issues/19002 : Correct browser viewholder naming
2021-05-11 19:40:14 +04:00
Jonathan Almeida
31a0602b9b
[fenix] Issue https://github.com/mozilla-mobile/fenix/issues/19002 : Move TabsTrayViewHolder to browser package
2021-05-11 19:40:14 +04:00
Jonathan Almeida
44973342da
[fenix] Issue https://github.com/mozilla-mobile/fenix/issues/19002 : Remove unused TrayItem interface
2021-05-11 19:40:14 +04:00
Jonathan Almeida
8b8b96d7d4
[fenix] Issue https://github.com/mozilla-mobile/fenix/issues/19002 : Use AbstractBinding from lib-state
2021-05-11 19:39:50 +04:00
Mugurell
ecaf009a61
[fenix] For https://github.com/mozilla-mobile/fenix/issues/18672 - Renaming a TopSite changes just the title
...
Previously renaming a TopSite would bind that as a new item and in such update
the entire list. This could potentially leading changes in the list and then
it's ViewPager parent's layout.
This patch switches the code to use the existing TopSitePayload and so do a
partial update of an on-screen TopSite instead of rebind it as a new item.
If a layout is requested while showing <=4 TopSites on the second page, by
having "offscreenPageLimit = 1" the biggest height of ViewPager pages is used
preventing an edgecase where the ViewPager would hide half of the items from
the first page.
2021-05-11 17:33:10 +03:00
kanish671
9190ef1c11
[fenix] For https://github.com/mozilla-mobile/fenix/issues/18672 - Rename TopSites even on the second page
...
Index calculation for notifying changes while renaming a top site in the second
page was being wrongly calculated. Since it is page 2, we would need to take a
mod with the number of top sites per page to get the actual index of the top
site that was being renamed.
2021-05-11 17:33:10 +03:00
Mozilla L10n Automation Bot
1822be6c64
[fenix] Import l10n.
2021-05-11 00:31:17 +00:00
Neha Binwal
57f0fb0f6d
[fenix] For https://github.com/mozilla-mobile/fenix/issues/19401 - Replace hard-coded hex color values with their respective photon color variable ( https://github.com/mozilla-mobile/fenix/pull/19406 )
...
* Replaced https://github.com/mozilla-mobile/fenix/issues/20123A with @color/photonInk80 in values\colors.xml
* Replaced #F9F9FB with @color/photonLightGrey10 in values\colors.xml
* Replaced #E0E0E6 with @color/photonLightGrey30 in values\colors.xml
* Replaced https://github.com/mozilla-mobile/fenix/pull/592ACB with @color/photonViolet70 in values\colors.xml
* Replaced https://github.com/mozilla-mobile/fenix/pull/312A65 with @color/photonInk20 in values\colors.xml
* Replaced #FBFBFE with @color/photonLightGrey05 in values\colors.xml
* Replaced #52525E with @color/photonDarkGrey10 in values\colors.xml
* Replaced #ffffff with @color/photonWhite in values\colors.xml
* Replaced https://github.com/mozilla-mobile/fenix/pull/5B5B66 with @color/photonDarkGrey05 in values\colors.xml
* Replaced https://github.com/mozilla-mobile/fenix/issues/1C1B22 with @color/photonDarkGrey80 in values\colors.xml
* Replaced #737373 with @color/photonGrey50 in values\colors.xml
* Replaced https://github.com/mozilla-mobile/fenix/issues/9059FF with @color/photonViolet50 in values\colors.xml
* Replaced https://github.com/mozilla-mobile/fenix/pull/5B5B66 with @color/photonDarkGrey05 in values-night\colors.xml
* Replaced https://github.com/mozilla-mobile/fenix/pull/3A3944 with @color/photonDarkGrey40 in values-night\colors.xml
2021-05-10 19:26:10 -04:00
Jonathan Almeida
a9254b79b9
[fenix] Issue https://github.com/mozilla-mobile/fenix/issues/19175 : Fix SyncTabs list not updating on changes
...
The main cause for this is that the `LifecycleProvider` needs to be set
to `State.RESUMED` to avoid the account manager's internal
`ObserverRegistry` from putting the UI observers into the paused state.
The rest of the changes is to rely the internal (safe) logic to
correctly sync and then update the tabs list.
2021-05-10 21:37:32 +04:00
mcarare
3f404375d3
[fenix] For https://github.com/mozilla-mobile/fenix/issues/19357 : Remove bookmarks experiment and keep star-with-line icon.
2021-05-10 15:38:52 +03:00
Mozilla L10n Automation Bot
88a894ed3a
[fenix] Import l10n.
2021-05-10 00:43:35 +00:00
Mozilla L10n Automation Bot
0acc879521
[fenix] Import l10n.
2021-05-09 00:35:54 +00:00
William Lachance
adb10fab4e
[fenix] No issue - Stop generating metrics.md
and direct to Glean Dictionary instead ( https://github.com/mozilla-mobile/fenix/pull/19411 )
...
Now that the Glean Dictionary (https://dictionary.telemetry.mozilla.org )
has hit production, our guidance is to move away from generating
metrics.md files. The Glean Dictionary is a better solution for this task
for a couple of reasons:
1. The Glean Dictionary contains a complete reference of all metrics
and pings sent by an application (not just those defined in the
application itself, as is the case with the markdown documentation)
2. The Glean Dictionary provides additional context and links beyond
what is provided by the documentation (for example, information on
how to access metric information via BigQuery or GLAM) as well as
annotations provided by data scientists in the course of analyzing data
(see, for example, the commentary section for:
https://dictionary.telemetry.mozilla.org/apps/fenix/metrics/metrics_search_count ).
This should also reduce some of the churn/burden on people when
they submit PRs, as there is no longer any need to update metrics.md
as a part of them.
2021-05-07 20:52:01 -04:00
Mozilla L10n Automation Bot
dc73ae411d
[fenix] Import l10n.
2021-05-08 00:33:33 +00:00
Neha Binwal
8e0c0c905c
[fenix] For https://github.com/mozilla-mobile/fenix/issues/8984 : Added color for "Share" menu's "Recently Used" in Dark theme ( https://github.com/mozilla-mobile/fenix/pull/18839 )
...
* Added color for "Share" menu's "Recently Used" in Dark theme
- Changed HEX code for inset_dark_theme in values/colors.xml
* Replaced #52525E in values/colors.xml with @color/photonDarkGrey10
* Added color for "Share" menu's "Recently Used" in Dark theme
- Created a separate attribute recentlyUsedSharedMenu to be used by 'recently used' panel of tab share menu
- It specifies colors to be used for Light and Dark theme
2021-05-07 14:48:35 -05:00
Neha Binwal
a235c00112
[fenix] For https://github.com/mozilla-mobile/fenix/issues/18226 : Fixed display of tabs for when text size is set to largest ( https://github.com/mozilla-mobile/fenix/pull/19046 )
...
- Made website titles clearly visible in Grid view of tab tray
- Made website URLs clearly visible in List view of tab tray
2021-05-07 14:45:09 -05:00
Elise Richards
50e5ebebd2
[fenix] Move locale restoration on startup to the visual completeness queue to prevent perf impact ( https://github.com/mozilla-mobile/fenix/pull/19315 )
2021-05-07 14:12:40 -05:00
Dharan Aditya
9b8e77e372
[fenix] Fixed mozilla-mobile https://github.com/mozilla-mobile/fenix/issues/18641 : [Bug] Fill link from clipboard overlaps search engines ( https://github.com/mozilla-mobile/fenix/pull/18657 )
2021-05-07 14:25:41 -04:00
Gabriel Luong
744e447c64
[fenix] For https://github.com/mozilla-mobile/fenix/issues/18993 - Nimbus: Allow internal tooling to opt into specific branches of an experiment ( https://github.com/mozilla-mobile/fenix/pull/19333 )
2021-05-07 14:21:03 -04:00
AndiAJ
9855b1d05a
[fenix] Fix flaky UI Tests https://github.com/mozilla-mobile/fenix/issues/19306 https://github.com/mozilla-mobile/fenix/issues/19160 https://github.com/mozilla-mobile/fenix/issues/19404 https://github.com/mozilla-mobile/fenix/issues/19373
2021-05-07 17:14:23 +03:00
Roger Yang
f9477db816
[fenix] Closes https://github.com/mozilla-mobile/fenix/issues/3728 : Add secret menu switch for allowing third party root certificates ( https://github.com/mozilla-mobile/fenix/pull/19398 )
2021-05-06 21:52:55 -04:00
Arturo Mejia
99d5305709
[fenix] For issue https://github.com/mozilla-mobile/fenix/issues/19290 update to proton icons second batch
2021-05-06 10:35:39 -04:00
mcarare
3681f15501
[fenix] For https://github.com/mozilla-mobile/fenix/issues/18266 : Validate credit card entry info.
2021-05-06 17:06:33 +03:00
mcarare
8155ca4c64
[fenix] For https://github.com/mozilla-mobile/fenix/issues/18266 : Refactor fragment and view to remove duplicate code.
2021-05-06 17:06:33 +03:00
Codrut Topliceanu
744357e211
[fenix] For https://github.com/mozilla-mobile/fenix/issues/18262 - [Credit cards] Turn the "Sync cards across devices" button into a "Sync cards" toggle ( https://github.com/mozilla-mobile/fenix/pull/19207 )
...
* For https://github.com/mozilla-mobile/fenix/issues/18262 - Turns "Sync cards/logins" into toggle
2021-05-06 14:43:27 +03:00
mcarare
52d3f0813b
[fenix] For https://github.com/mozilla-mobile/fenix/issues/19281 : Add border radius for top sites favicons.
2021-05-06 13:56:24 +03:00
kglazko
646a12f318
[fenix] For https://github.com/mozilla-mobile/fenix/issues/19055 - Add a ScrollView to the Credit Card Editor Fragment ( https://github.com/mozilla-mobile/fenix/pull/19117 )
2021-05-05 15:43:09 -04:00
Mozilla L10n Automation Bot
9b1c91315e
[fenix] Import l10n.
2021-05-05 15:33:22 +00:00
Roger Yang
2d709b67a7
[fenix] Closes https://github.com/mozilla-mobile/fenix/issues/19147 : Move startup metrics to right after Glean initialization ( https://github.com/mozilla-mobile/fenix/pull/19252 )
2021-05-05 11:11:02 -04:00
codrut.topliceanu
47327e0100
[fenix] For https://github.com/mozilla-mobile/fenix/issues/19132 - Fix navigation on disconnect started from tabsTray
...
- Added checks to popBackStack from the Disconnect Logged-in User Dialog, either back to settings, browserFragment or homeFragment.
2021-05-05 09:55:10 +04:00
Jonathan Almeida
964b03a65f
[fenix] Close https://github.com/mozilla-mobile/fenix/issues/19259 : Pass CoroutineContext to nav interactor constructor
2021-05-04 20:13:10 +04:00
Mozilla L10n Automation Bot
0425ceb59f
[fenix] Import l10n.
2021-05-04 00:31:21 +00:00
Roger Yang
0884711ab1
[fenix] Closes https://github.com/mozilla-mobile/fenix/issues/18253 : Bookmark and History open new tabs in the background ( https://github.com/mozilla-mobile/fenix/pull/19275 )
2021-05-03 17:27:19 -04:00
Mozilla L10n Automation Bot
f1899ec400
[fenix] Import l10n.
2021-05-03 00:28:38 +00:00
Mozilla L10n Automation Bot
0eab51db90
[fenix] Import l10n.
2021-05-02 00:32:00 +00:00
Mozilla L10n Automation Bot
29211178e8
[fenix] Import l10n.
2021-05-01 00:27:28 +00:00
Sebastian Kaspari
cf11703649
[fenix] Unit tests: Bump max heap size to 3072m.
2021-04-30 16:40:42 +02:00
Mozilla L10n Automation Bot
bd5c0d95cf
[fenix] Import l10n.
2021-04-30 00:30:50 +00:00
Priyanka
97f25e8f8d
[fenix] For https://github.com/mozilla-mobile/fenix/issues/19273 - Ensure a new line at the EOF is available in all xml files ( https://github.com/mozilla-mobile/fenix/pull/19295 )
2021-04-29 15:06:46 -04:00
Elise Richards
4565b0f1ea
[fenix] Turn on feature flag for three-dot menu redesign for beta. ( https://github.com/mozilla-mobile/fenix/pull/19111 )
2021-04-29 11:34:57 -05:00
Sebastian Kaspari
3da6fe471e
[fenix] Issue https://github.com/mozilla-mobile/fenix/issues/19040 - Fix UI test: settingsPrivacyItemsTest
2021-04-29 19:13:33 +04:00
Sebastian Kaspari
1d8ff55891
[fenix] Issue https://github.com/mozilla-mobile/fenix/issues/19040 - Update marketing data setting description
2021-04-29 19:13:33 +04:00
Sebastian Kaspari
c1e6f6c9e6
[fenix] Issue https://github.com/mozilla-mobile/fenix/issues/10941 : Align Nightly version with Gecko/A-C version.
...
Instead of using a timestamp this will synchronize the Nightly version with the version
of Gecko / A-C. So when using 90.0.20210426143115 then the Nightly version will be
90.0a1 - similar to what Firefox desktop uses.
2021-04-29 09:50:07 +02:00
Mozilla L10n Automation Bot
ff7194591e
[fenix] Import l10n.
2021-04-29 00:31:49 +00:00
Roger Yang
9f608d6b0a
[fenix] Closes https://github.com/mozilla-mobile/fenix/issues/18253 : Remove spaces from Addons telemetry comma-separated list ( https://github.com/mozilla-mobile/fenix/pull/19292 )
2021-04-28 12:09:27 -04:00
Codrut Topliceanu
676a1298a2
[fenix] For https://github.com/mozilla-mobile/fenix/issues/19113 - Change top site corner radius to 8dp ( https://github.com/mozilla-mobile/fenix/pull/19262 )
2021-04-27 18:42:40 -04:00
Arturo Mejia
cb4c6b2132
[fenix] For issue https://github.com/mozilla-mobile/fenix/issues/18132 update to proton icons first batch
2021-04-27 15:42:15 -04:00
mcarare
ee2e653ebb
[fenix] For https://github.com/mozilla-mobile/fenix/issues/19213 : Adjust synced tabs to properly show in RTL.
2021-04-27 22:26:34 +04:00
Mugurell
6acdc32aad
[fenix] For https://github.com/mozilla-mobile/fenix/issues/11819 - Show the mic in widget only if setting is enabled
...
If "Show voice search" is disabled under Settings, the mic icon should not be
shown in the search widget.
2021-04-27 17:28:41 +03:00
Mozilla L10n Automation Bot
a210538479
[fenix] Import l10n.
2021-04-27 01:39:26 +00:00
Arturo Mejia
00e4051b15
[fenix] Fix openFile breaking changes
2021-04-26 20:24:47 -04:00
William Lachance
283bae5ff1
[fenix] No issue - Properly quote description for ad metric ( https://github.com/mozilla-mobile/fenix/pull/19243 )
...
This is pedantic, but strictly something called <provider-name> is considered an HTML tag
unless it's in a code block (backticks).
See mozilla/glean-dictionaryhttps://github.com/mozilla-mobile/fenix/pull/549 and mozilla/glean-dictionaryhttps://github.com/mozilla-mobile/fenix/pull/497 . I'm going to fix this upstream
but figured I might as well file a PR here to fix the underlying issue.
2021-04-26 19:24:23 -04:00
Sebastian Kaspari
7c11a19369
[fenix] Issue https://github.com/mozilla-mobile/fenix/issues/19040 : Remove Leanplum (Nightly)
2021-04-26 19:08:10 +02:00
Grisha Kruglov
632ba92ad5
[fenix] Fix breaking changes introduced by credit card encryption APIs
2021-04-26 10:41:45 +02:00
Sebastian Kaspari
3425689113
[fenix] Use new SearchSuggestionProvider flag.
2021-04-26 10:41:45 +02:00
Mozilla L10n Automation Bot
253e2e4485
[fenix] Import l10n.
2021-04-26 00:32:02 +00:00
Mozilla L10n Automation Bot
9125fa9659
[fenix] Import l10n.
2021-04-25 00:29:11 +00:00
Mozilla L10n Automation Bot
a51bd7dbf4
[fenix] Import l10n.
2021-04-24 00:29:05 +00:00
Mozilla L10n Automation Bot
298846bdee
[fenix] Import l10n.
2021-04-23 00:40:41 +00:00
Mihai Adrian Carare
7dea66e1e2
[fenix] For https://github.com/mozilla-mobile/fenix/issues/19065 - Add extension functions to be used with credit cards. ( https://github.com/mozilla-mobile/fenix/pull/19187 )
2021-04-22 18:22:20 -04:00
Mugurell
d2faf47d3a
[fenix] For https://github.com/mozilla-mobile/fenix/issues/18591 - Update tests
...
Some tests trying to "Add to top sites" may fail because of the sticky navbar
now covering that menu item -> scroll the menu up a little.
Some tests that previously were trying to scroll to the bottom of the menu to
interact with navbar options now don't have to. Them trying to interact with
navbar option with the menu opened as collapsed is a good test for the navbar
stickyness.
2021-04-22 21:09:37 +03:00
Mugurell
b04c52d115
[fenix] For https://github.com/mozilla-mobile/fenix/issues/18591 - Make the navbar sticky in the new menu
2021-04-22 21:09:37 +03:00
Roger Yang
fffa196da9
[fenix] Closes https://github.com/mozilla-mobile/fenix/issues/18816 : Disable TabsTray FAB on accessibility enabled ( https://github.com/mozilla-mobile/fenix/pull/19170 )
2021-04-22 12:48:10 -04:00
mcarare
d94dcd6bd3
[fenix] For https://github.com/mozilla-mobile/fenix/issues/19125 : Move top site pin net to title.
2021-04-22 18:53:50 +03:00
Gabriel Luong
33a81d217a
[fenix] No issue - Replace local photon colors with ui-colors ( https://github.com/mozilla-mobile/fenix/pull/19167 )
2021-04-22 10:37:34 -04:00
mcarare
748c70d3e3
[fenix] For https://github.com/mozilla-mobile/fenix/issues/19180 : Fix tab counter not entirely visible on RTL layout.
2021-04-22 17:02:01 +03:00
Sebastian Kaspari
692611fa13
[fenix] Remove browser-search references.
2021-04-22 13:18:10 +02:00
mcarare
f28b815561
[fenix] For https://github.com/mozilla-mobile/fenix/issues/18267 : Updates preferences visibility depending on creditCardsStore
2021-04-22 10:45:57 +03:00
Mozilla L10n Automation Bot
09c32a05b7
[fenix] Import l10n.
2021-04-22 00:30:11 +00:00
Elise Richards
e009e920fa
[fenix] Remove strings marked as deprecated that are no longer being used. ( https://github.com/mozilla-mobile/fenix/pull/19060 )
2021-04-21 16:02:14 -05:00
Elise Richards
3eff41bd2d
[fenix] For https://github.com/mozilla-mobile/fenix/issues/19114 : check state of sync account when navigating from sync sign in menu item ( https://github.com/mozilla-mobile/fenix/pull/19118 )
2021-04-21 14:13:44 -05:00
mcarare
a579e7b1af
[fenix] For https://github.com/mozilla-mobile/fenix/issues/18608 : Also add default browser item in new menu.
2021-04-21 15:54:21 +03:00
Arturo Mejia
e2af9f8372
[fenix] Address WebExtensionBrowserMenuBuilder breaking change
2021-04-21 11:44:37 +02:00
Sebastian Kaspari
41f7cc9d24
[fenix] Update to Mozilla Android Components 90.0
2021-04-21 11:44:37 +02:00
Roger Yang
73b0bcf3c1
[fenix] No issue: Suppress deprecation for LoginStorageDelegate ( https://github.com/mozilla-mobile/fenix/pull/19145 )
2021-04-20 16:25:01 -04:00
mcarare
04c0e062af
[fenix] No issue: Rename Event for naming consistency.
2021-04-20 14:48:07 -04:00
mcarare
6774f41d26
[fenix] For https://github.com/mozilla-mobile/fenix/issues/18852 : Add metrics for default browser settings experiment.
2021-04-20 14:48:07 -04:00
Elise Richards
c56f3835be
[fenix] For https://github.com/mozilla-mobile/fenix/issues/19005 : new tab three-dot menu sync sign in ( https://github.com/mozilla-mobile/fenix/pull/19037 )
...
* Show synced tabs or sync account in new tab menu
* Sync sign in item navigates to account settings
* Check account auth and get sync item title
* Look for sync sign in item on home menu for UI test
* Sync sign in menu item UI test
2021-04-20 12:18:19 -05:00
mcarare
7543d25b80
[fenix] For https://github.com/mozilla-mobile/fenix/issues/18240 : Adjust preference screen to fit UX specs.
2021-04-20 19:32:14 +03:00
Christian Hernandez
5c7de09133
[fenix] For https://github.com/mozilla-mobile/fenix/issues/18830 - Remove card nickname from credit card editor ( https://github.com/mozilla-mobile/fenix/pull/18891 )
...
* Removed all views with regards to credit card nickname. Removed the TextInputLayout and TextInputEditText where information would be typed in. Also removed the credit card nickname title text view. I added a margin of 16 dp to the bottom ConstraintLayout that houses the delete, cancel, and save buttons as requested.
* https://github.com/mozilla-mobile/fenix/issues/18830 - Removed all views with regards to credit card nickname. Removed the TextInputLayout and TextInputEditText where information would be typed in. Also removed the credit card nickname title text view. I added a margin of 16 dp to the bottom ConstraintLayout that houses the delete, cancel, and save buttons as requested.
2021-04-20 12:09:09 -04:00
Jonathan Almeida
c6fe6bd93e
[fenix] Close https://github.com/mozilla-mobile/fenix/issues/19094 : Open sign-in flow if no account is created for tabs tray
2021-04-19 23:18:37 +04:00
Kate Glazko
3818b88fef
[fenix] For https://github.com/mozilla-mobile/fenix/issues/18745 : Add Shadow To Shortcut Tiles
2021-04-19 11:01:08 -07:00
Jonathan Almeida
ed14d32d97
[fenix] No issue: Allow tabstray rewrite to ride the trains
2021-04-19 20:08:24 +04:00
Jonathan Almeida
be8873f8d4
[fenix] Disabling tabstray collection tests until https://github.com/mozilla-mobile/fenix/issues/19090 is fixed
2021-04-19 18:10:43 +04:00
Jonathan Almeida
bc86a34797
[fenix] No issue: Fix regression in last tab deleted
...
When we allow the homescreen to handle undo for the last tab, we no
longer need to handle this ourselves with our own binding.
In the future, we should re-think this logic to be more robust and less
spread out across multiple screens.
2021-04-19 18:10:43 +04:00
Jonathan Almeida
b0d0e1b8c9
[fenix] No issue: Use same open tabs tray everywhere
2021-04-19 18:10:43 +04:00
Jonathan Almeida
b0764f9042
[fenix] No issue: Fix the initial select mode check
2021-04-19 18:10:43 +04:00
Jonathan Almeida
8ce71d589f
[fenix] No issue: Do not create a new instance of TabsTrayStore
...
We only need one. :)
2021-04-19 18:10:43 +04:00
Jonathan Almeida
2c4d36392f
[fenix] Attempt at fixing openAllTabsInCollectionTest test
2021-04-19 18:10:43 +04:00
Jonathan Almeida
a63d26f673
[fenix] Disable/fix tests that rely on Select Tabs button
2021-04-19 18:10:43 +04:00
Jonathan Almeida
7a372f13f9
[fenix] No issue: Enable tabs tray re-write by default in nightly
2021-04-19 18:10:43 +04:00
mcarare
7caceac997
[fenix] For https://github.com/mozilla-mobile/fenix/issues/18496 : Set activity theme in onCreate before call to super.
2021-04-19 13:32:45 +03:00
Mozilla L10n Automation Bot
21cfdbb62f
[fenix] Import l10n.
2021-04-19 00:31:22 +00:00
Mozilla L10n Automation Bot
c021fdf786
[fenix] Import l10n.
2021-04-18 00:32:58 +00:00
Jonathan Almeida
4c69372287
[fenix] Close https://github.com/mozilla-mobile/fenix/issues/19064 : Focus on tab page with the BrowsingModeManager
2021-04-17 04:30:38 +04:00
Roger Yang
cf70cb61b3
[fenix] Closes https://github.com/mozilla-mobile/fenix/issues/18946 : Add undo toast for tabstray
2021-04-17 02:30:39 +04:00
Michael Comella
5d92d409e3
[fenix] For https://github.com/mozilla-mobile/fenix/issues/18836 : address onCreate method length detekt issue.
2021-04-16 15:30:26 -07:00
Michael Comella
e83004d81b
[fenix] For https://github.com/mozilla-mobile/fenix/issues/18836 : add & integrate StartupTypeTelemetry.
2021-04-16 15:30:26 -07:00