Commit Graph

2288 Commits (7aa310a6114b7f7b2b62dd85fdd3ff9c5a740270)

Author SHA1 Message Date
Jeff Boek 4371996382 [fenix] For https://github.com/mozilla-mobile/fenix/issues/220 - Removes feature flag for language picker (https://github.com/mozilla-mobile/fenix/pull/9191)
* For https://github.com/mozilla-mobile/fenix/issues/220 - Removes feature flag for language picker

* For https://github.com/mozilla-mobile/fenix/issues/220 - Updates Android Components
4 years ago
Mihai Adrian 8f1876407b [fenix] For https://github.com/mozilla-mobile/fenix/issues/9687: Refactor onboarding cards to follow app architecture (https://github.com/mozilla-mobile/fenix/pull/9743)
* For https://github.com/mozilla-mobile/fenix/issues/9687: Refactor onboarding cards to follow app architecture

* For https://github.com/mozilla-mobile/fenix/issues/9687: Update unit test to new controller parameters
4 years ago
Arturo Mejia 174af614f4 [fenix] For issue https://github.com/mozilla-mobile/fenix/issues/9647 Crash when tapping settings after quickly
enabling/disabling add-on
4 years ago
Michael Droettboom 461853e252 [fenix] Fix errors in top_sites_count metric
We discovered in the Fenix metrics errors query [1] that
top_sites_count had a spike in the number of errors. It
seems to be recording a count of 0, which is an invalid value.

[1] https://sql.telemetry.mozilla.org/queries/67107/source#169983
4 years ago
Mugurell dca4c74a30 [fenix] For https://github.com/mozilla-mobile/fenix/issues/3262 - Enable pull down to refresh in Nightly 4 years ago
MickeyMoz 0487e0ad62 [fenix] Update Android Components version to 38.0.20200403130109. 4 years ago
Michael Comella cb29b33e21 [fenix] No issue: add kdoc to HomeActivity.
We could consider renaming the Activity to make it clearer that it's the
main activity and doesn't just feature the homescreen but I'm concerned
that renaming it will break too many things (e.g. automation that starts
a specific activity). For quick fix, I added this comment.
4 years ago
Sawyer Blatz 9e5e780a9a [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/9128 & https://github.com/mozilla-mobile/fenix/issues/9222 & https://github.com/mozilla-mobile/fenix/issues/9499: Refactors snackbar creation and fixes placement (https://github.com/mozilla-mobile/fenix/pull/9628) 4 years ago
Gabriel Luong e754578cef [fenix] For https://github.com/mozilla-mobile/fenix/issues/6174 - Add telemetry for WebExtensions (https://github.com/mozilla-mobile/fenix/pull/8318) 4 years ago
Emily Kager 2ec2ee395b [fenix] For https://github.com/mozilla-mobile/fenix/issues/768: Add first time PWA dialog (https://github.com/mozilla-mobile/fenix/pull/9308)
Co-authored-by: Tiger Oakes <toakes@mozilla.com>
4 years ago
David Walsh a96fa3b790 [fenix] Prevent favicons from flashing when items are selected in History (https://github.com/mozilla-mobile/fenix/pull/9233) 4 years ago
Mihai Adrian 66d28a700c [fenix] For https://github.com/mozilla-mobile/fenix/issues/9336 Check current destination before navigating (https://github.com/mozilla-mobile/fenix/pull/9353)
* For https://github.com/mozilla-mobile/fenix/issues/9336 Check current destination before navigating

* For https://github.com/mozilla-mobile/fenix/issues/9336 Update unit test to check for navigateSafe
4 years ago
ekager 8224f61cb3 [fenix] For https://github.com/mozilla-mobile/fenix/issues/9533 - Switch to using enum for Library Item Selected Telemetry 4 years ago
Grisha Kruglov 4b91238222 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/9553: Only update account UI state once when creating SettingsFragment 4 years ago
ekager ea9add8d2b [fenix] For https://github.com/mozilla-mobile/fenix/issues/8125 - Send top sites count with metrics ping 4 years ago
mcarare ef2d26efee [fenix] For https://github.com/mozilla-mobile/fenix/issues/9365: Partially reverse menu items order when using top toolbar 4 years ago
mcarare 011b4f7fbd [fenix] For https://github.com/mozilla-mobile/fenix/issues/9365: Update naming to reflect history item 4 years ago
Sawyer Blatz eb99ae1fef [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/9598 & https://github.com/mozilla-mobile/fenix/issues/8697: Fixes force expand crash (https://github.com/mozilla-mobile/fenix/pull/9599) 4 years ago
codrut.topliceanu 7b333febc0 [fenix] For https://github.com/mozilla-mobile/fenix/issues/9549 - Scrolling to top sites now includes header. 4 years ago
Mihai Branescu d80763ee11 [fenix] For https://github.com/mozilla-mobile/fenix/issues/9109 - remove the sync error highlight from three-dot menu 4 years ago
Grisha Kruglov 12e3619a2e [fenix] Make sure reconnect item is displayed in HomeMenu in case of account problems
AccountObserver listeners were being triggered correctly, however, during every time
we open HomeFragment, home menu gets re-created, which causes us to re-run the initialization
block. Before this patch, the init block would never touch the account manager.
After this patch, it will query it if account manager has already been initialized.
4 years ago
Grisha Kruglov 8d1befd34c [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/9561: Fix initialization order in HomeMenu
`init` blocks are executed before `val` initialization which is declared afterwards
in the class. In this case, we had `quitItem` and `reconnectToSyncItem` as lazy,
but declared after the `init` block which may need them. And so, while this compiles
just fine, in practice we run into an NPE as the `init` block tries to get the lazy's value.

Simply re-ordering initialization fixes the problem.
4 years ago
Arturo Mejia 12237fdca1 [fenix] For issue https://github.com/mozilla-mobile/fenix/issues/8520: Polish Add-on manager UIs 4 years ago
Sawyer Blatz 72e91ad94a [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/9472: ForceExpand browser toolbar when navigating (https://github.com/mozilla-mobile/fenix/pull/9552) 4 years ago
ValentinTimisica 7d57c791f0 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8412: Passes error handling function to 'CustomTabWindowFeature' (https://github.com/mozilla-mobile/fenix/pull/8903)
* For https://github.com/mozilla-mobile/fenix/issues/8412: Passes error handling function to 'CustomTabWindowFeature'

Change required for showing error message when the app can't handle a specific
scheme. Implemented in AC:
https://github.com/mozilla-mobile/android-components/pull/6122

* Upgrade AC version

Co-authored-by: Sawyer Blatz <sdblatz@gmail.com>
4 years ago
Grisha Kruglov 3d7f7cbe5d [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/9530: Don't crash on failed avatar fetches 4 years ago
Grisha Kruglov 423d7cfdda [fenix] Part 6: Kick-off account manager initialization after visual completeness
In order to hide the time it takes for the account manager to be initialized
(which always involves disk IO, and often network IO), let's kick it off
after "visual completeness".
This makes sure that for most users, by the time they interact with the account
manager-related functionality (e.g. in Settings), it's ready to go.

Also, for signed-in users, this will establish background sync workers.
4 years ago
Grisha Kruglov 1a25bc758e [fenix] Part 5: Refactor HomeMenu<->HomeFragment interaction
This refactor "reverses" relationship between these two classes, allowing
HomeMenu to inform its parent, HomeFragment, of any changes to the menu.

Once that's in place, we start observing account manager changes (once its ready)
for account problems.

This solves two problems:
- initialization of the account manager is no longer necessary to build a home menu
- home menu now starts observing changes to the account manager's state (before it was static)
4 years ago
Grisha Kruglov 13deec03a1 [fenix] Part 4: Make sure 'sync is on' snackbar does not initialize account manager 4 years ago
Grisha Kruglov 71564af97d [fenix] Part 3: Mark accountManager as 'lazy' in Mode.kt
This is enough to cause it to be initialized only if we're going through onboarding.
4 years ago
Grisha Kruglov 1a6e1c0b7f [fenix] Part 2: Do not eagerly initilize account manager within HomeActivity
Instead of always kicking off accountManager's init and telling it to sync right away in
'onResume', we move these tasks to some abstract point later on, whenever account manager
is available.
4 years ago
Grisha Kruglov 4e308faf35 [fenix] Part 1: Add 'accountManagerReady' queue to BackgroundServices
This gives us an ability to perform tasks against 'accountManager' without
causing its immediate initialization.
4 years ago
Grisha Kruglov ccb08070a7 [fenix] Pre: introduce a RunWhenReadyQueue
This replaces the StartupTaskManager we had with a more general class.
New implementation is a thread-safe "gated task executor", which either
runs the task right away if it's marked as 'ready', or queries it to be
executed later on.

This ability to either execute or queue a task will be useful later on in the
commit series.
4 years ago
Sawyer Blatz e488ed1773 [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/9132: Update to search animation for top toolbar (https://github.com/mozilla-mobile/fenix/pull/9524)
* let animation in top toolbar mode play nicely.

* remove duplicate methods, make code readable.

* migrate getToolbarNavOptions method to BrowserAnimator, one method to rule them all.

* Update linting

Co-authored-by: ahmedmamdouh13 <ahmedmamdouh13196@gmail.com>
4 years ago
David Walsh af892ba291 [fenix] For https://github.com/mozilla-mobile/fenix/issues/7059 - Allow search engines to scroll 4 years ago
David Walsh 8b88382e82 [fenix] Add top sites heading to home screen 4 years ago
mcarare ceec72715d [fenix] For https://github.com/mozilla-mobile/fenix/issues/9498: Replace navargs with viewModel to remember if scroll to tab 4 years ago
mcarare f75a0e4347 [fenix] For https://github.com/mozilla-mobile/fenix/issues/9496: Vertically align collection name and icons to collection icon 4 years ago
codrut.topliceanu df49c9dd94 [fenix] For https://github.com/mozilla-mobile/fenix/issues/9500 - Revert patch for 8568
The patch for 8568 introduced this regression.
Let's just revert it until we can come up with a better solution.
4 years ago
Sebastian Kaspari de3dda8af1 [fenix] Update to new feature-media API. 4 years ago
Edouard Oger 24b2efdc89 [fenix] Add secret debug menu to override FxA servers 4 years ago
mcarare d2c048aa23 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8764: Use list component for items in collections 4 years ago
mcarare 003fb31dfb [fenix] For https://github.com/mozilla-mobile/fenix/issues/8764: Update collection design, including list elements 4 years ago
mcarare 8a92e18ff8 [fenix] For https://github.com/mozilla-mobile/fenix/issues/9252: Add progress bar to saved logins view 4 years ago
mcarare d27f0cf313 [fenix] For https://github.com/mozilla-mobile/fenix/issues/9252: Update views visibility ony when list has finished loading 4 years ago
Arturo Mejia 23c3c286de [fenix] For issue https://github.com/mozilla-mobile/fenix/issues/8017 enable SitePermissionsWifiIntegration 4 years ago
codrut.topliceanu 7ea1b1ec35 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8568 - Refocus URL editText in SearchFragment onResume 4 years ago
Amaan Marfatia 15a8de6f27 [fenix] AboutPageAdapter doesn't use notifyDataSetChanged()
We make the AboutPageAdapter inherit from a ListAdapter so that we don't use notifyDataSetChanged().
4 years ago
mcarare 46e353fd73 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8968: Hide keyboard when navigating away from browser 4 years ago
ValentinTimisica 47fd3e26fc [fenix] Fixes https://github.com/mozilla-mobile/fenix/issues/9280: Remove tabs fade in animation when pressing on Add new collection 4 years ago
Mugurell 2bd3a7d137 [fenix] Fix https://github.com/mozilla-mobile/fenix/issues/8651 - Add new menu actions for a history item
We'll now also support:
- Copy url
- Share to another FXA device
- Open in new tab
- Open in private tab
4 years ago
mcarare b65982aba1 [fenix] For https://github.com/mozilla-mobile/fenix/issues/7356: Scroll to selected tab when pressing tab overview 4 years ago
Mihai Eduard Badea 2b725c6345 [fenix] Replaced name field with search string field 4 years ago
ValentinTimisica 0dd3a735f1 [fenix] Fixes https://github.com/mozilla-mobile/fenix/issues/4987: Remove close tabs functionality when they are added to a collection 4 years ago
ValentinTimisica 0e678b153f [fenix] Fixes https://github.com/mozilla-mobile/fenix/issues/7734: Remove animation for back button 4 years ago
Christian Sadilek 0c9b5ec2a9 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/9414: Make AMO collection configurable 4 years ago
Grisha Kruglov 31143e7a88 [fenix] Perform storage warm-up after visual completeness 4 years ago
Sebastian Kaspari adb8f436d3 [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/5208: Use new tab/collection restore API. 4 years ago
Mihai Branescu 0dac3dd329 [fenix] For https://github.com/mozilla-mobile/fenix/issues/9395 - Trimmed name for custom search engines 4 years ago
Arturo Mejia 45721403f8 [fenix] No issue: Add add-on updater information dialog 4 years ago
Mihai Branescu 25327d400f [fenix] For https://github.com/mozilla-mobile/fenix/issues/8972 Replaced purple colors to match the rest of the app 4 years ago
Mihai Branescu 7ecf93b320 [fenix] For https://github.com/mozilla-mobile/fenix/issues/9207 - changed status bar color in home fragment to match gradient background 4 years ago
Arturo Mejia bbe7a09e13 [fenix] For issue https://github.com/mozilla-mobile/fenix/issues/9364 Crash when blocking app permissions and returning to
the app
4 years ago
ekager 5ec37e0c57 [fenix] Add toolbar padding for bookmark snackbar 4 years ago
ekager fb227c15c3 [fenix] For https://github.com/mozilla-mobile/fenix/issues/9351 - Show snackbars with toolbar padding to work with dynamic toolbar 4 years ago
Arturo Mejia 7543353b57 [fenix] For issue https://github.com/mozilla-mobile/fenix/issues/8809 Notification permissions can't be disabled/re-enabled
unless you restart the browser
4 years ago
Arturo Mejia ae917577f1 [fenix] No issue: Remove feature flag for removing one TP exception 4 years ago
mcarare 5c4e1ecfd3 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8759 Use activityName instead of packageName as app identification 4 years ago
Arturo Mejia 2cc49442bf [fenix] For issue https://github.com/mozilla-mobile/fenix/issues/9334 Fix Remove of one exception is deleting all 4 years ago
Sawyer Blatz 36d9a00925 [fenix] For https://github.com/mozilla-mobile/fenix/issues/9256: Attempts to fix installation ping not being sent (https://github.com/mozilla-mobile/fenix/pull/9331) 4 years ago
Kate Glazko 56ad058b6a [fenix] For 7077 Simplify Display Url 4 years ago
Mihai Branescu e6db667004 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8653 - changed menu strings 4 years ago
mcarare ce60d6df58 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8899: Set viable anchor for snackbars in both custom and normal tab 4 years ago
ValentinTimisica 5de64fa395 [fenix] Fixes https://github.com/mozilla-mobile/fenix/issues/9243: Remove tabs fade in animation when pressing on Save to Collection 4 years ago
David Walsh 5a95d8c96a [fenix] For https://github.com/mozilla-mobile/fenix/issues/8652 - Allow sharing multiple bookmarks 4 years ago
David Walsh d55c3483d0 [fenix] For https://github.com/mozilla-mobile/fenix/issues/9177, https://github.com/mozilla-mobile/fenix/issues/8248 - Hide empty verified by block when no cert 4 years ago
Severin Rudie a0193296bf [fenix] 8017 advanced autoplay controls. (https://github.com/mozilla-mobile/fenix/pull/8978)
* For https://github.com/mozilla-mobile/fenix/issues/8017: add advanced autoplay controls
4 years ago
Elise Richards 1be0825abe [fenix] For https://github.com/mozilla-mobile/fenix/issues/8592: Relocate device name in account preferences. Deactivate device name field while syncing. (https://github.com/mozilla-mobile/fenix/pull/9255) 4 years ago
Sawyer Blatz 3c3db7d3ba [fenix] For https://github.com/mozilla-mobile/fenix/issues/9136: Send all adjust properties to glean (https://github.com/mozilla-mobile/fenix/pull/9253) 4 years ago
Sawyer Blatz 059c39e273 [fenix] For https://github.com/mozilla-mobile/fenix/issues/9256: Attempts to fix installation ping not being sent (https://github.com/mozilla-mobile/fenix/pull/9254) 4 years ago
Grisha Kruglov b707ec4a38 [fenix] Initialize storage after visual completeness
In order to eat the perceived performance costs, we initialize storage
once we're visually complete. This way, we're reducing chances of user performing
a UI action which will trigger storage init and delay said action.
4 years ago
Grisha Kruglov 51a31a42ba [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/7450: Lazy storage initialization
Make sure that we actually lazily initialize our storage layers.

With this patch applied, storage layers (history, logins, bookmarks) will be initialized when first
accessed. We will no longer block GeckoEngine init, for example, on waiting for the logins storage
to initialize (which needs to access the costly securePrefStorage).
Similarly, BackgroundServices init will no longer require initialized instances of the storage
components - references to their "lazy wrappers" will suffice.

In practice, this change changes when our storage layers are initialized in the following ways.
Currently, we will initialize everything on startup. This includes loading our megazord, as well.

With this change, init path depends on if the user is signed-into FxA or not.

If user is not an FxA user:
- on startup, none of the storage layers are initialized
- history storage will be initialized once, whenever:
  - first non-customTab page is loaded (access to the HistoryDelegate)
  - first interaction with the awesomebar
  - history UI is accessed
- bookmarks storage will be initialized once, whenever:
  - something is bookmarked, or we need to figure out if something's bookmarked
  - bookmarks UI is accessed
- logins storage will be initialized once, whenever:
  - first page is loaded with a login/password fields that can be autofilled
  - (or some other interaction by GV with the autofill/loginStorage delegates)
  - logins UI is accessed
- all of these storages will be initialized if the user logs into FxA and starts syncing data
  - except, if a storage is not chosen to be synced, it will not be initialized

If user is an FxA user:
- on startup, none of the storage layers are initialized
- sometime shortly after startup is complete, when a sync worker runs in the background, all storage
layers that are enabled to sync will be initialized.

This change also means that we delay loading the megazord until first access (as described above).
4 years ago
mcarare 9b0a7baa73 [fenix] For https://github.com/mozilla-mobile/fenix/issues/9140: Remove drawable from title in empty state panes 4 years ago
Arturo Mejia 397ce4da6d [fenix] No issue: Add serverConfig param to FxaWebChannelFeature 4 years ago
Arturo Mejia bc61f5151c [fenix] Remove @UseExperimental for usages of the flow api 4 years ago
mcarare 2e157e75fc [fenix] For https://github.com/mozilla-mobile/fenix/issues/9200: Remove star icon from empty state icon in toolbar 4 years ago
mcarare eb3eb5dea2 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8814: Change icon asset for top sites menu option 4 years ago
Jonathan Almeida 061af2c380 [fenix] For https://github.com/mozilla-mobile/fenix/issues/7661: Add variant-specific schemas for deep links
In order to target specific variants of Fenix, we're adding schemas that
are specific that app in order to avoid collisions with the other
variants and with other forks of fenix that may have the same schemas.

The current schema for variants:
 - Fenix Nightly: `fenix-nightly://`
 - Fenix Beta: `fenix-beta://`
 - Everything else: `fenix://`
4 years ago
Sawyer Blatz efaf85ca4b [fenix] For https://github.com/mozilla-mobile/fenix/issues/3086: Adds settings animations (https://github.com/mozilla-mobile/fenix/pull/9187) 4 years ago
Christian Sadilek 30ce746bb0 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8808 https://github.com/mozilla-mobile/fenix/issues/9139: Add-on should be able to configure how to open options page 4 years ago
Edouard Oger 0ab28e9a0a [fenix] Prepare for a-c a-s upgrade 4 years ago
Sebastian Kaspari 4169924754 [fenix] Use pinned Android Components Nightly version instead of snapshots. 4 years ago
Christian Sadilek 3a22f2e0d3 [fenix] No issue: Remove unneeded logic to adjust TP 4 years ago
Jonathan Almeida ef6c0cb3cc [fenix] Add nightly-only feature flag for WebPush integration 4 years ago
codrut.topliceanu fc2c801048 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8561 - Scroll to topSites on app cold start 4 years ago
Sawyer Blatz 1cc4aeea46 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8773: Fixes issue with snackbar placement on ContextMenu (https://github.com/mozilla-mobile/fenix/pull/8942) 4 years ago
Roger Yang 9484cf0713 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/9104: Pass release channel information to Socorro service (https://github.com/mozilla-mobile/fenix/pull/9130) 4 years ago
Jeff Boek 887c1c0d7a [fenix] No issue - Fixes shadow on top layout 4 years ago
Jeff Boek 81abd0c497 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8949 - Removes old motionlayout code, fixes how shadow is drawn 4 years ago
David Walsh 1ae3202125 [fenix] Show the collections header when there are no collections 4 years ago
ekager f3d6d7f52d [fenix] For https://github.com/mozilla-mobile/fenix/issues/8897 - Don't remove all external sessions on back press 4 years ago
Michael Comella 9d832f24e7 [fenix] No issue: remove unused HotStartPerformanceMonitor.
This monitor for hot start was intended to be used by FNPRMS to measure
hot start. However, hot start was deprioritized so it's now essentially
unused.
4 years ago
Mihai Branescu 7675d3113a [fenix] For https://github.com/mozilla-mobile/fenix/issues/8800 - dismiss all highlights when menu is closed 4 years ago
Severin Rudie fa7f2f9f61 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8800: clear menu highlights on use 4 years ago
mcarare be9502ea79 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8474 Reorganize browser menu items 4 years ago
Arturo Mejia 6a328a7207 [fenix] For issue https://github.com/mozilla-mobile/fenix/issues/8908 Notify users when previously unsupported add-ons
become available
4 years ago
ekager 1c4119d25c [fenix] For https://github.com/mozilla-mobile/fenix/issues/7087 - Add SearchView to Logins Fragment 4 years ago
ekager 7bc98a0efc [fenix] For https://github.com/mozilla-mobile/fenix/issues/8296 - Adds user account avatar to Account Preference 4 years ago
Jonathan Almeida cf1971176c [fenix] For https://github.com/mozilla-mobile/fenix/issues/9059: Add WebPush engine integration 4 years ago
ekager 63f1556fbf [fenix] For https://github.com/mozilla-mobile/fenix/issues/8967 - Remove ability to pref login autofilling by itself 4 years ago
mcarare d8cba93d1b [fenix] For https://github.com/mozilla-mobile/fenix/issues/8788 Use Flexbox instead of Grid manager for top sites 4 years ago
Emily Kager 4f04e2ee6c [fenix] For https://github.com/mozilla-mobile/fenix/issues/8423 - Adds delete login confirmation dialog (https://github.com/mozilla-mobile/fenix/pull/9014) 4 years ago
mcarare 6a5c11c87e [fenix] For https://github.com/mozilla-mobile/fenix/issues/8975: Separate title from url with line break when sharing links 4 years ago
Sawyer Blatz 4b14b16d51 [fenix] For https://github.com/mozilla-mobile/fenix/issues/7158: Improves home to search animation (https://github.com/mozilla-mobile/fenix/pull/9008) 4 years ago
Christian Sadilek a2fdbe0576 [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/8291: Speculatively create content process in search fragment 4 years ago
Sawyer Blatz 74b3046b65 [fenix] For https://github.com/mozilla-mobile/fenix/issues/7158: Improves browser to search animation (https://github.com/mozilla-mobile/fenix/pull/8961) 4 years ago
Sebastian e6c5de8f73 [fenix] Use new MemoryConsumer.onTrimMemory() API. 4 years ago
Jim Porter f63364c4e2 [fenix] For https://github.com/mozilla-mobile/fenix/issues/7847: Improve startup performance of the Fenix wrapper around Glean 4 years ago
Sebastian 2088e60c28 [fenix] Update IntentProcessor implementation to comply with new interface. 4 years ago
Josh Vocal a947993ec5 [fenix] For https://github.com/mozilla-mobile/fenix/issues/7554: Add App Services Version to About Page 4 years ago
Gabriel Luong 5963579caf [fenix] For https://github.com/mozilla-mobile/fenix/issues/8593 - Style the add-ons permission dialog to match the Fenix theme 4 years ago
Jonathan Almeida dcd9a15e91 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8950: Unregister observers in the main scope coroutine 4 years ago
mcarare 4bbd3756a6 [fenix] For https://github.com/mozilla-mobile/fenix/issues/6607 Update button theming in no tab pane 4 years ago
mcarare d8430ac635 [fenix] For https://github.com/mozilla-mobile/fenix/issues/6607 Update button theming in no tab pane 4 years ago
Sawyer Blatz da20e69455 [fenix] For https://github.com/mozilla-mobile/fenix/issues/5308: Show search shortcuts for search term queries 4 years ago
Jonathan Almeida 3e4cb19f9d [fenix] Log push crashes to CrashReporter 4 years ago
Jonathan Almeida acc3bb4ec6 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/6730: Lazily initialize account manager on new push message 4 years ago
Grisha Kruglov f07442ba4e [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/7344: Login storage refactor
The a-c side of this work is in https://github.com/mozilla-mobile/android-components/pull/6128

This switches Fenix to use `SyncableLoginsStorage`, which caches a connection internally
on first access, and doesn't expose any lock/unlock APIs at the public boundary.
4 years ago
Sebastian Kaspari 719b5418d2 [fenix] AwesomeBarView: Pass BrowserStore to SessionSuggestionProvider instead of SessionManager. 4 years ago
Christian Sadilek 332416ae5a [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/7863: Ensure parent process triggers speculative connect 4 years ago
Sawyer Blatz a437a1c6f4 [fenix] For https://github.com/mozilla-mobile/fenix/issues/5346 & For https://github.com/mozilla-mobile/fenix/issues/8859: Fixes textSize & animation on TabCounter 4 years ago
Sawyer Blatz 8c317ee75a [fenix] For https://github.com/mozilla-mobile/fenix/issues/5308: Display search shortcuts when going from browser to search 4 years ago
Andrew Gaul f345e3627e [fenix] Do not scroll menu when toolbar is on top
Fixes https://github.com/mozilla-mobile/fenix/issues/8838.
4 years ago
Harshal Lele 2f1f077ead [fenix] fix https://github.com/mozilla-mobile/fenix/issues/8135 - remove getColorFromAttr 4 years ago
Sawyer Blatz 1b81b51626 [fenix] For https://github.com/mozilla-mobile/fenix/issues/167: Adds browser -> home animation 4 years ago
Emily Kager 75bdff2878 [fenix] Revert "For https://github.com/mozilla-mobile/fenix/issues/7603 - Temporarily do not show biometric prompt for OnePlus devices"
This reverts commit bd5dfdafcd6f18ae88e09e1aeea9ab276e1c906a.
4 years ago
Michael Comella d8a97e9d5c [fenix] For https://github.com/mozilla-mobile/fenix/issues/8797: Do not allow nested scrolling on top sites. 4 years ago
mcarare c7c6fd516a [fenix] For https://github.com/mozilla-mobile/fenix/issues/8766: Show collections only when tabs are open or collection exists 4 years ago
Mihai Adrian cfeace6e14 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8873 - Update snackbar padding for adding top sites 4 years ago
Arturo Mejia c4ae21c54d [fenix] Show a notification when add-on update requires new permissions 4 years ago
Sawyer Blatz 74a8a9e29d [fenix] For https://github.com/mozilla-mobile/fenix/issues/167: Improves home to browser animation 4 years ago
Michael Comella 3dc6e1d215 [fenix] For https://github.com/mozilla-mobile/fenix/issues/7781: instrument visual completeness for top sites.
Eyeballing my output in *Debug builds on my P2, this adds approximately 115ms
or slightly less from first frame drawn to visually complete time.
4 years ago
Michael Comella 928c8aadf6 [fenix] No issue: make Performance methods private that can be. 4 years ago
ekager 1cbd9f9d7c [fenix] No issue: Fix LeakCanary detected memory leaks
Co-authored-by: Emily Kager <emilykager@gmail.com>
Co-authored-by: Pierre-Yves Ricau <py@squareup.com>
4 years ago
Sebastian Kaspari 3f31aee2e9 [fenix] FennecWebAppIntentProcessor: Handle manifest file not existing. 4 years ago
Sebastian Kaspari fdc85bf82e [fenix] IntentReceiverActivity: Simplify intent handling.
This patch removes the need to process() and then match() on every intent processor.
A successful process() means that we already matched. Doing this in two steps caused
issues when the process() failed but later the simple check in match() returned true.

After this patch lands I intent to remove the match() API from the IntentProcessor
interface in AC:
https://github.com/mozilla-mobile/android-components/issues/6097
4 years ago
mcarare 391198abd7 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8773: Set proper anchor and padding for Snackbars on browser screen 4 years ago
mcarare 036e74f0f4 [fenix] For https://github.com/mozilla-mobile/fenix/issues/6607 Add button to no tab content pane 4 years ago
David Walsh 7e4c381982 [fenix] Make 'Redirect to Sync' home menu item go directly to the 'Reconnect to Sync' / error screen 4 years ago
David Walsh 6d97114ad9 [fenix] Match account problem styling between HomeMenu and BrowserMenu 4 years ago
Sebastian Kaspari 55ef89d83c [fenix] FenixSearchEngineProvider: Use dummy location service in debug builds.
Workaround for issue described in:
https://github.com/mozilla-mobile/android-components/issues/5989

For debug builds it is unnecessary to use the actual location provider since those builds
do not have an API key configured. With that patch we replace the location provider with
a dummy implementation in debug builds.
4 years ago
Arturo Mejia 7fa17f6fbe [fenix] Make sure all installed extensions are registered for updates 4 years ago
Will Hawkins 866d008e67 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8034: Create a post-visual completeness executor
Create an object that will execute its enqued tasks
when Fenix is visually complete.
4 years ago
Simon Chae c32f24f0b3 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8116: Attach add-on snackbar to activity rootView 4 years ago
David Walsh 1462e34c3f [fenix] For https://github.com/mozilla-mobile/fenix/issues/7504 - Update sync error display in menus (https://github.com/mozilla-mobile/fenix/pull/8639) 4 years ago
ekager b24a4cbcb4 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8641 - Update addon text selector to use attr colors 4 years ago
Simon Chae 8c858e49b2 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8824: Reset isInstallationInProgress in correct lifecycle (https://github.com/mozilla-mobile/fenix/pull/8825) 4 years ago
Arturo Mejia ba018c4489 [fenix] No issue: Submit exceptions while updating add-ons to the crashReporter 4 years ago
Simon Chae 821063dde4 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8699: Add view.settings to setAllInteractiveViewsClickable (https://github.com/mozilla-mobile/fenix/pull/8820) 4 years ago
Mihai Adrian 623ca58b5f [fenix] For https://github.com/mozilla-mobile/fenix/issues/8540: Fix ETP options not being correctly applied (https://github.com/mozilla-mobile/fenix/pull/8688) 4 years ago
David Walsh d51848bcaa [fenix] For https://github.com/mozilla-mobile/fenix/issues/8505 - Update tab icon 4 years ago
Simon Chae 8ce8c11b4b [fenix] For https://github.com/mozilla-mobile/fenix/issues/8699: Add setAllInteractiveViewsClickable for add-on pending removal (https://github.com/mozilla-mobile/fenix/pull/8776) 4 years ago
mcarare f928fb34b2 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8627: Add proper content description to ETP card clickable areas 4 years ago
Grisha Kruglov 6740bb85e4 [fenix] Public API changes related to 0.52.0 A-S bump 4 years ago
Severin Rudie 96460ed942 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8752: fix invalid AutoplayAction crash 4 years ago
Sawyer Blatz 7fd64075b3 [fenix] For https://github.com/mozilla-mobile/fenix/issues/7715: Display search suggestions when pressing allow 4 years ago
Grisha Kruglov 32802e7fc8 [fenix] Remove direct A-S dependency; switch to using 'full' megazord
As far as I can tell, we never actually exercise the a-s libraries in Fenix tests currently (this was one of the presumed reasons for having a direct dependency).
In a different branch I've started work on adding end-to-end tests, but currently that's blocked on trying to figure out to load native libraries in tests (somehow, fenix's setup is different than what we have in A-C, not yet clear to me in what way).

Another reason for a direct dependency (i think) is that we needed it to configure a `fenix` megazord. This could be solved via a `support-megazord-fenix` a-c component that provides the correct transient dependencies,
but we can also just switch to use the `full` megazord instead, which is essentially what fenix megazord is at this point. A-S team wants to remove the fenix megazord, so this will help. This is what this patch does.
4 years ago
ekager 0c4725dbfb [fenix] For https://github.com/mozilla-mobile/fenix/issues/5843 - Ensure tabs pending deletion are removed 4 years ago
Sawyer Blatz a040442402 [fenix] For https://github.com/mozilla-mobile/fenix/issues/4383: Add feature flag 4 years ago
Sawyer Blatz a971086fda [fenix] For https://github.com/mozilla-mobile/fenix/issues/4383: Enable dynamic bottom toolbar 4 years ago
ekager fae3dee41d [fenix] For https://github.com/mozilla-mobile/fenix/issues/5696 - Adds basic share action to text selection context menu 4 years ago
ekager c50c1c2999 [fenix] No issue: Add back updateThemeForSession in onResume 4 years ago
MarcLeclair 73719d449f [fenix] For https://github.com/mozilla-mobile/fenix/issues/7448: Move LP to IO dispatcher (https://github.com/mozilla-mobile/fenix/pull/8558) 4 years ago
Sawyer Blatz ebb0a8a1e8 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8743: Fix baseBrowserFragment crash 4 years ago
ekager c61501b72f [fenix] Removes FragmentPreDrawManager changes in BrowserFragment 4 years ago
Sawyer Blatz be4198f248 [fenix] No issue: Fixes swipeRefresh UI test crash 4 years ago
mcarare a47a7d11a8 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8655: Show top site context menu below top site title 4 years ago
Arturo Mejia 4b09a47cf5 [fenix] Initializes GlobalAddonDependencyProvider 4 years ago
Mihai Adrian c1b6a54662 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8594: Show correct info in Etp settings info (https://github.com/mozilla-mobile/fenix/pull/8687) 4 years ago
Sebastian Kaspari c0598a5174 [fenix] Closes https://github.com/mozilla-mobile/fenix/pull/6003: MigrationProgressActivity: Always open browser. 4 years ago
Severin Rudie 6300cc1931 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8411: integrate AC permissions changes (https://github.com/mozilla-mobile/fenix/pull/8618) 4 years ago
Sparky93 292ce42be1 [fenix] Fix for https://github.com/mozilla-mobile/fenix/issues/8533 - Migration screen's buttons in the wrong place
Made a small refactor on the migration screen layout in order to correctly position the elements.
4 years ago
Simon Chae ddead9bd7f [fenix] For https://github.com/mozilla-mobile/fenix/issues/8637: Remove setActivityTheme outside activity lifecycle scope 4 years ago
Mihai Adrian 20ed966332 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8565: Fix updating dropdown preferences in ETP settings! (https://github.com/mozilla-mobile/fenix/pull/8573)
* For https://github.com/mozilla-mobile/fenix/issues/8565: Create custom SharedPreferenceUpdater for String Preferences

* For https://github.com/mozilla-mobile/fenix/issues/8565: Use custom updater to correctly update DropDownPreference

* For https://github.com/mozilla-mobile/fenix/issues/8565: Set default values for dropDown preferences

* For 8565: add tests for findEntriesValue

* For 8565: clarified findEntryValue

Co-authored-by: Severin Rudie <Baron-Severin@users.noreply.github.com>
4 years ago
Sebastian Kaspari eeed3f13b5 [fenix] Implement new feature-tabs API. 4 years ago
Jeff Boek 9ccf1386ef [fenix] For https://github.com/mozilla-mobile/fenix/issues/8153 - Allow web-extensions to open tabs in correct browsing mode 4 years ago
Jeff Boek 92397a4ce4 [fenix] Reverts For https://github.com/mozilla-mobile/fenix/issues/7559 - allows changing locale even after setting theme with 4 years ago
Jeff Boek dba1d8166d [fenix] Reverts all BrowsingModeManager changes 4 years ago
ekager 6f5863d8bb [fenix] For https://github.com/mozilla-mobile/fenix/issues/8580 - Don't change theme in initialize UI 4 years ago
Roger Yang cd59a78052 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/8654: Fix breakage from customTabId rename (https://github.com/mozilla-mobile/fenix/pull/8656) 4 years ago
Jeff Boek 4ab83dbcaa [fenix] Revert "For https://github.com/mozilla-mobile/fenix/issues/8460: Prevent multiple back navigation clicks."
This reverts commit bbf42caae976e9757cc531b2925c40c71771bede.
4 years ago
Sawyer Blatz 496d02ab20 [fenix] For https://github.com/mozilla-mobile/fenix/issues/1901: Screenshot engineView to remove GV flash
Co-authored-by: ekager <ekager@mozilla.com>
4 years ago
Roger Yang 0da13d7f00 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/8544: Activity should be reused when opening intents from other apps (https://github.com/mozilla-mobile/fenix/pull/8547) 4 years ago
Simon Chae 3937d6debf [fenix] For https://github.com/mozilla-mobile/fenix/issues/8535 https://github.com/mozilla-mobile/fenix/issues/8498: Allow for multiple browsingModeListeners dispatch 4 years ago
Dennis Schubert b97bd46a98 [fenix] Bug 1613416 - Hide "Report site issue" button in Fenix Production. 4 years ago
mcarare 07de0ef372 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8460: Prevent multiple back navigation clicks. 4 years ago
Arturo Mejia ba62a9cad6 [fenix] For issue https://github.com/mozilla-mobile/fenix/issues/8570: Disabling uBlock and quickly opening the Settings
section cause a crash
4 years ago
Sawyer Blatz b6e461bb58 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8454 - Removes back button from the search screen 4 years ago
Jeff Boek 02f0edbfcf [fenix] For https://github.com/mozilla-mobile/fenix/issues/8552 - Fixes bug where "installing/uninstalling" was using the old pref key 4 years ago
mcarare ecc4a2b909 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8523: Also disable radio buttons clickable area when ETP is off 4 years ago
mcarare b3b921b232 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8534: Register preference update on first tap 4 years ago
Mihai Branescu 417afaa14a [fenix] For https://github.com/mozilla-mobile/fenix/issues/4231 added unit tests for most recent apps 4 years ago
Mihai Branescu 4fe9033c0f [fenix] For https://github.com/mozilla-mobile/fenix/issues/4231
Added kapt plugin + dependencies in order to be able to use Room
Added recent apps to share fragment (top 6)
Extracted dimens of share_to_apps.xml in the dimens file
4 years ago
Mihai Adrian 4d8fc15a09 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8529: Fix custom ETP preferences visibility update 4 years ago
Sebastian Kaspari dcd851b611 [fenix] Use Mozilla Android Components 34.0.0-SNAPSHOT. (https://github.com/mozilla-mobile/fenix/pull/8527) 4 years ago
Arturo Mejia 61e774fd16 [fenix] Show internal add-on version when available (https://github.com/mozilla-mobile/fenix/pull/8507) 4 years ago
Jeff Boek abc70b98ff [fenix] For https://github.com/mozilla-mobile/fenix/issues/6981 - Fixes tests to support locale aware changes 4 years ago
Jeff Boek 1d2136a868 [fenix] For https://github.com/mozilla-mobile/fenix/issues/6981 https://github.com/mozilla-mobile/fenix/issues/6907 - Properly reloads search engines when locale changes 4 years ago
ekager 96a5a18a6d [fenix] No issue: Fix login for BaseBrowserFragment FragmentPreDrawManager 4 years ago
ekager 2b17d80f51 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8514 - Use state list colors for default disabled states 4 years ago
Jeff Boek ea819f9a9d [fenix] For https://github.com/mozilla-mobile/fenix/issues/4807 - Always navigate to settings after deleting data 4 years ago
ekager b88284fb59 [fenix] For https://github.com/mozilla-mobile/fenix/issues/6737 - Set Logins checkbox default to true 4 years ago
Mihai Adrian 280f69cb51 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8268 - Update added to top sites snackbar text (https://github.com/mozilla-mobile/fenix/pull/8435) 4 years ago
ValentinTimisica fcfb5359d4 [fenix] For https://github.com/mozilla-mobile/fenix/issues/7957: Enable Login management preference for all users 4 years ago
ekager edcd102e20 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8324 - Only use encrypted storage for Nightly/Debug populations 4 years ago
Jeff Boek 72618be169 [fenix] For https://github.com/mozilla-mobile/fenix/issues/3869 - Uses RegionSearchLocalizationProvider in the search engine provider 4 years ago
mcarare 57eb8c0027 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8354 Fix uppdating theme when coming from external links 4 years ago
mcarare 9292ff600f [fenix] For https://github.com/mozilla-mobile/fenix/issues/8354 Fix opening custom tabs and links directly in private mode 4 years ago
mcarare bea5d85173 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8354 Remove unsetting open links in private if not default browser 4 years ago
mcarare ae9e2770fc [fenix] For https://github.com/mozilla-mobile/fenix/issues/6479: Add granular ETP settings 4 years ago
Emma Malysz c3fe927e07 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8056: remove Experiments.initialize from FenixApplication
Experiments will not be used before GA and are thus being removed
for performance wins.
4 years ago
ValentinTimisica 75768f98e9 [fenix] For https://github.com/mozilla-mobile/fenix/issues/1741: Passes 'showDescription' boolean to SearchSuggestionProvider
Change required for removing description from search suggestion. Implemented
in AC (https://github.com/mozilla-mobile/android-components/pull/5890)
4 years ago
Severin Rudie a11290cf08 [fenix] For https://github.com/mozilla-mobile/fenix/issues/7896: integrate text selection search from AC (https://github.com/mozilla-mobile/fenix/pull/8295) 4 years ago
Sebastian Kaspari dcf1356a6e [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/8277: Reuse app icon in widget layout.
This patch refactors the widget layouts so that we can reuse the app icon and do not have to have
another logo resource with different constraints. This will also make it easier to update the
branding in https://github.com/mozilla-mobile/fenix/issues/8277 and https://github.com/mozilla-mobile/fenix/issues/8278.
4 years ago
ekager d63350d415 [fenix] No issue: Fix new optional adds on arg error 4 years ago
Jeff Boek ef35bc2c24 [fenix] For https://github.com/mozilla-mobile/fenix/issues/7295 - Adds more documentation for the installation metrics 4 years ago
codrut.topliceanu 0c9efef83c [fenix] For https://github.com/mozilla-mobile/fenix/issues/7295 - Adds new custom ping: 'installation' 4 years ago
ekager fecc5376cf [fenix] For https://github.com/mozilla-mobile/fenix/issues/8126 - Adds default top sites 4 years ago
ekager d364c79fbd [fenix] For https://github.com/mozilla-mobile/fenix/pull/8348 - Add small delay after biometric auth 4 years ago
Sebastian Kaspari 7eb2ffabe3 [fenix] Dismiss "migration notification" after leaving migration activity.
For https://github.com/mozilla-mobile/android-components/issues/5886.

With this patch we will dismiss the "migration completed" notification once the users
clicks on the button in the migration activity.
4 years ago
Sparky93 1bd90cfaff [fenix] Fix for https://github.com/mozilla-mobile/fenix/issues/8426 - Migration steps displayed in a different order than UI specifications
Changed the order of the whitelisted migrations in order to respect the UI specifications.

Now using linked hash map instead of hash map for the whitelisted migrations so we can preserve the
order of the steps upon status changing in the migration process.
4 years ago
mcarare 1601b94719 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8372: Set toolbar position relative anchor for url copied snackbar 4 years ago
Severin Rudie faf145a04d [fenix] For https://github.com/mozilla-mobile/fenix/issues/8408: fix requireContext crash in HomeFragment#onViewCreated 4 years ago
Emily Kager ad5f09d042 [fenix] For https://github.com/mozilla-mobile/fenix/issues/6623 - Adds ability to delete a login 4 years ago
Mugurell 0929ce5872 [fenix] For https://github.com/mozilla-mobile/fenix/issues/6577 - Remove the `total_uri_count` Glean StringMetricType
This was added as a duplicate to an already existing `total_uri_count`
CounterMetricType in https://github.com/mozilla-mobile/fenix/issues/4456.
4 years ago
Christian Sadilek 8f35bd177b [fenix] No issue: Support basic navigation in add-on popups 4 years ago
mcarare 0d7a8129f9 [fenix] For https://github.com/mozilla-mobile/fenix/issues/6980: Update Private browsing card.
Added test to description.
Added link to settings.
Updated unit tests.
4 years ago
Jeff Boek 673fca0d49 [fenix] For mozilla-mobilehttps://github.com/mozilla-mobile/fenix/issues/8172: Add a new 'E_Fennec_To_Fenix_Migrated' Leanplum event
This new event will be sent when the user has successfully migrated from Fennec
to Fenix.
This event will only be sent to Leanplum and not to the other telemetry
services like Glean or Adjust.

Co-authored-by: ValentinTimisica <valentin.timisica@softvision.ro>
4 years ago
ValentinTimisica 117b196472 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8172: Add a new "Fenix" Leanplum attribute 4 years ago
Emily Kager fd05ca94b7 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8403: Don't postpone transition for view intents 4 years ago
Christian Sadilek e81dce7dd1 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8143: Allow add-on popups to display prompts 4 years ago
Emily Kager 60bdc02b6e [fenix] For https://github.com/mozilla-mobile/fenix/issues/8358 - Make sure we don't cancel toolbar editing more than once 4 years ago
Emily Kager 412c470195 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8366 - Move CreateShortcutFragment dismiss after AddToHomescreen 4 years ago
Simon Chae f3008c0ec7 [fenix] Allow fragment to go back when all unsupported add-ons are removed (https://github.com/mozilla-mobile/fenix/pull/8351) 4 years ago
Simon Chae 0e13878eb2 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8153: Allow web-ext to open new tabs in correct browsing mode 4 years ago
mcarare e39a1948d9 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8262: Set toolbar position relative anchor for collection snackbars 4 years ago
Jeff Boek fb219581ed [fenix] For https://github.com/mozilla-mobile/fenix/issues/5905 - Creates private browsing settings fragment 4 years ago
Jeff Boek 7b25c7872b [fenix] For https://github.com/mozilla-mobile/fenix/issues/5905 - Combine theme and toolbar settings 4 years ago
Jeff Boek 672179f1ec [fenix] No Issue - Fixes breaking snapshot change 4 years ago
mcarare 7045a27193 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8299: Select current ETP policy set on card creation 4 years ago