Commit Graph

5228 Commits (695c7773069bbb1abe378983bd2e2ed794f88073)

Author SHA1 Message Date
Victor dfab17947d [fenix] Solves Leaks on SavedLoginFragment
disables options menu to avoid leak
 removes on click listener to avoid leak
4 years ago
Sebastian Kaspari 997b066b00 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/18006: DefaultSessionControlControllerTest: Correctly unmock SearchStateKt class.
The test class left SearchStateKt mocked and caused other tests to fail intermittently when
running after it.
4 years ago
mcarare af0dfaa3dc [fenix] For https://github.com/mozilla-mobile/fenix/issues/17807: Fix systemWindowInset deprecation. 4 years ago
Oana Horvath 8427eddc28 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16317 UI tests: save longTap preference to restore it 4 years ago
Mozilla L10n Automation Bot 08a0a1c3b6 [fenix] Import l10n. 4 years ago
Ryan Kelly 23154791ab [fenix] Reset experiment telemetry identifiers on data prefs change.
When the user opts out of telemetry, we need to reset the user identifiers
used by the experiment system, so that there's no risk of tracking the
user across the reset event if they later decide to re-enable telemetry.
4 years ago
Oana Horvath 9caaa08732 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16317: resets long press delay at the end of UI tests 4 years ago
Mozilla L10n Automation Bot ca84828a66 [fenix] Import l10n. 4 years ago
Jan-Erik Rediger ba94d2e39e [fenix] Glean: Check for renamed reason 4 years ago
Mugurell 22ec6af4a3 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17195 - Don't try setting an idle resource if the View is already off screen
Speculative fix based on the Firebase logs which shows that on a second check
of R.id.tab_wrapper it is not found the screen.
It may be because after `advanceToHalfExpandedState` and before getting a
reference to it in `waitForTabTrayBehaviorToIdle` it was already animated off
the screen.
With this in mind I've added a null check for the view reference before trying
to register an idling resource on it's Behavior.

Also added and used a way to click at a specific location in a View, not just
in the default middle in the View.
It was observed from the Firebase videos that a "click" on the topBar actually
selected the private tabs section. This would leave us to believe that the
"click" was caught by that other View which was placed above the x,y middle of
the topBar.
4 years ago
Mugurell e16ef0b3c6 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17195 - Test a potential fix for the test 4 years ago
Oana Horvath a2cc89acb6 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17484, https://github.com/mozilla-mobile/fenix/issues/18003 UI tests: retry closing tab if it fails 4 years ago
Mozilla L10n Automation Bot c7c7ce8e86 [fenix] Import l10n. 4 years ago
Christian Sadilek d8024b9169 [fenix] Refactor BrowserToolbarController to use browser store 4 years ago
Codrut Topliceanu cf939f2a26 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17352 - Fixes deleted downloads reappearing (https://github.com/mozilla-mobile/fenix/pull/17930)
* For https://github.com/mozilla-mobile/fenix/issues/17352 - Fixes deleted downloads reappearing

The `getDeleteDownloadItemsOperation` job would check fragment context not null after the fragment was stopped. Removing that check and only passing the downloadUseCase as a parameter fixes the problem.
4 years ago
Mozilla L10n Automation Bot 7fcdf3e489 [fenix] Import l10n. 4 years ago
Mozilla L10n Automation Bot 5662eb3042 [fenix] Import l10n. 4 years ago
Mozilla L10n Automation Bot fccf88fe26 [fenix] Import l10n. 4 years ago
Elise Richards 1708e2c424 [fenix] Remove unneeded temporary UI test ignores (https://github.com/mozilla-mobile/fenix/pull/17980) 4 years ago
Mugurell 7e3969c01d [fenix] For https://github.com/mozilla-mobile/fenix/issues/17686 - Use a custom behavior to scroll InfoBanner with the top toolbar
Previously when the toolbar was on top the banner was inflated in the toolbar's parent - an AppBarLayout.
After migrating to use a custom behavior for scrolling the toolbar and not use
anymore the AppbarLayout for this we needed a new solution.
Using a new behavior to keep this banner in sync with the y translation of the
toolbar gives us most of the old behavior back.
4 years ago
Elise Richards 9c5bc17da9 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17771: three-dot menu reorder (https://github.com/mozilla-mobile/fenix/pull/17838)
* Feature flag for toolbar menu redesign. Add new items to menu and reorder.

* Handle toolbar items in menu controller

* Menu controller tests

* Make icons invisible

* Lint

* UI tests reflect design change

* Refactor test names

* Lint fixes

* UI tests
4 years ago
Mozilla L10n Automation Bot 20e0f884d2 [fenix] Import l10n. 4 years ago
Michael Comella 4496ae2ae5 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17920: move manufacturer StrictMode exception to ignores function.
I think this is more consistent and centralizes the violation ignores.
4 years ago
Michael Comella 1b8ac55003 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17920: use StrictMode penaltyDeathWithIgnores. 4 years ago
Michael Comella 2bc1605cbd [fenix] For 17920: add ThreadPenaltyDeathWithIgnoresListener, tests, helpers. 4 years ago
Michael Comella 5836fe6f65 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17920: add ManufacturerCodes. 4 years ago
Michael Comella 50b0c72261 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17816: add ProfilerFactProcessor and register it, tests. 4 years ago
Mugurell 3e9bd41397 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17803 - Use the main looper for Handler()s
This was already the one inferred.
Targeting Android 11 means we need to pass it explicitly.
4 years ago
Codrut Topliceanu 942195bfae [fenix] For https://github.com/mozilla-mobile/fenix/issues/17418 - Added telemetry for Google Default Top Site (https://github.com/mozilla-mobile/fenix/pull/17637)
* For https://github.com/mozilla-mobile/fenix/issues/17418 - Adds channel "ts" to TrackKey

This is used to track if the `InContentTelemetry` is a result of the user using the Google Top Site. It looks for `&channel=ts` within the uri.

* For https://github.com/mozilla-mobile/fenix/issues/17418 - Adds TopSite PerformedSearch back in

* For https://github.com/mozilla-mobile/fenix/issues/17418 - Check now looks for equality with GOOGLE_URL

* For https://github.com/mozilla-mobile/fenix/issues/17418 - Adds test for topSite changes
4 years ago
Mozilla L10n Automation Bot 93c88fb1ae [fenix] Import l10n. 4 years ago
Sebastian Kaspari 0e4e2623bb [fenix] ToolbarIntegration: Use global public suffix list instance. 4 years ago
Roger Yang f3009d5a2b [fenix] Fix OpenSpecificTabIntentProcessorTest to remove AbstractMediaService (https://github.com/mozilla-mobile/fenix/pull/17955) 4 years ago
Sebastian Kaspari ac67fc9de6 [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/17174: Remove usage of old media APIs. 4 years ago
Christian Sadilek 8deddb6dcb [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/17889: Wrong tab selected/reloaded when restored from collection 4 years ago
Mozilla L10n Automation Bot 5ffa622713 [fenix] Import l10n. 4 years ago
ekager 62ab7505e1 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17906 - Allow screenshots for private home screenshot test 4 years ago
Oana Horvath 488e18bfa6 [fenix] For https://github.com/mozilla-mobile/fenix/issues/15259 UI test: waits for home screen to be visible 4 years ago
AndiAJ 5e626c49c1 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17195 Fix Intermittent UI test verifyTabTrayNotShowingStateHalfExpanded 4 years ago
AndiAJ 1d0384c1f5 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17852 Change and Fix Intermittent UI test openNewTabTest 4 years ago
Michael Comella b62dfc086b [fenix] For https://github.com/mozilla-mobile/fenix/issues/17816: add profiler marker for onPreDraw via HomeActivity.onStart.
This may be useful for MAIN start up to determine when the user begins
seeing content.
4 years ago
Michael Comella 6895920bde [fenix] For https://github.com/mozilla-mobile/fenix/issues/17816: add profiler marker for 2x Activity.onCreate.
The IntentReceiverActivity one is particularly useful to quickly determine
when we can begin executing code in the WARM VIEW case (i.e. "Set selection
begin here").

The HomeActivity one is useful for COLD start up analysis in similar
ways and to see the Activity transitions in WARM VIEW.
4 years ago
Mozilla L10n Automation Bot fe3151fd0b [fenix] Import l10n. 4 years ago
ekager cb641900d4 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17915 - Do not launch system settings on Role Request Intent cancel 4 years ago
AndiAJ aca5681026 [fenix] For https://github.com/mozilla-mobile/fenix/issues/14523 Fix Intermittent tests verifyContextOpenLinkNewTab & verifyContextOpenLinkPrivateTab 4 years ago
Oana Horvath dca92aed10 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17847: Removes editCustomSearchEngineTest UI test 4 years ago
Mozilla L10n Automation Bot 066ed1c8fa [fenix] Import l10n. 4 years ago
Arturo Mejia 31035fdca1 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17817 Change the feature prompt references from fragment to activity. 4 years ago
Mozilla L10n Automation Bot 8d9222725c [fenix] Import l10n. 4 years ago
Abhinav Gupta ec673f6d4c [fenix] Hiding the usernameview if the data item.username is blank. 4 years ago
ekager a0ed1a4a1d [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/17871 - use viewLifecycleOwner for TopSitesFeature owner on HomeFragment (https://github.com/mozilla-mobile/fenix/pull/17873) 4 years ago
Mozilla L10n Automation Bot 21b0b9c2b0 [fenix] Import l10n. 4 years ago
Roger Yang aa6190bce4 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/17174: Remove the New Media Session API Feature Flag (https://github.com/mozilla-mobile/fenix/pull/17863) 4 years ago
ekager 1e9ba2a87c [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/13089 - Adds correct animations for account settings 4 years ago
ekager 466a163f05 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17785 - Use screenshots setting when adding secure flag 4 years ago
jhugman e47dcc8bde [fenix] Fixes https://github.com/mozilla-mobile/fenix/issues/17738 - Early initialization of Nimbus (https://github.com/mozilla-mobile/fenix/pull/17834) r=christian 4 years ago
Mugurell b3930760b7 [fenix] For https://github.com/mozilla-mobile/fenix/issues/10686 - Use the AC custom behavior for both the top and bottom toolbars
This comes to unify the experience (with improvements but also specific issues)
for the url toolbar irrespective of it being placed at the bottom or at the top
Going further this will ease development and ensure the best UX for users.
4 years ago
Gabriel Luong 1430e127b1 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17418 - Add event ping telemetry for the Google Top Site click (https://github.com/mozilla-mobile/fenix/pull/17862)
Co-authored-by: codrut.topliceanu <codrut.topliceanu@softvision.ro>
Co-authored-by: Gabriel Luong <gabriel.luong@gmail.com>
4 years ago
jhugman dd557d6607 [fenix] Fixes https://github.com/mozilla-mobile/fenix/issues/17833 - increment A/A experiment id (https://github.com/mozilla-mobile/fenix/pull/17835) r=christian 4 years ago
Christian Sadilek 6699c65180 [fenix] Remove SessionManager reference from FenixApplication 4 years ago
Oana Horvath 5153461698 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17847: disables editCustomSearchEngineTest 4 years ago
MickeyMoz 20b30e40cc [fenix] Update Android Components version to 73.0.20210204143136. 4 years ago
Andrei Joltan 421d0e5757 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16020 Fix Intermittent tests caused by the Menu Button (https://github.com/mozilla-mobile/fenix/pull/17829) 4 years ago
Oana Horvath 40660c602d [fenix] For https://github.com/mozilla-mobile/fenix/issues/16615: UI smoke test customTrackingProtectionSettingsTest 4 years ago
AndiAJ c846cc683e [fenix] For https://github.com/mozilla-mobile/fenix/issues/12895 Fix Intermittent test navigateBookmarksFoldersTest 4 years ago
hwinnemo 36ab8d42cf [fenix] For https://github.com/mozilla-mobile/fenix/issues/17724: Wait for tab to be fully created before showing ETP Onboarding if ETP is active 4 years ago
Sebastian Kaspari 478a314f44 [fenix] Remove TabsUseCases methods that take a Session object. 4 years ago
Grisha Kruglov ba388e3d88 [fenix] Exclude separators from the bookmarks UI 4 years ago
Grisha Kruglov a1dc2c4f10 [fenix] Reuse helper functions in bookmark tests 4 years ago
Mugurell 39b9878271 [fenix] For https://github.com/mozilla-mobile/fenix/issues/12414 - Support sharing images through ShareDownloadFeature
Register a ViewBoundFeatureWrapper<ShareDownloadFeature> that will respond to
"Share image" from the browser contextual menu
4 years ago
Michael Droettboom 5ba78efbe7 [fenix] Update bug numbers to URLs for activation ping
Earlier versions of Glean supported bug numbers of the metadata, but this causes
ambiguity, particularly for Fenix where issues exist in both Bugzilla and
Github. This just updates the Bugzilla numbers to full URLs.

We made the use of numbers an error sometime ago, but neglected to enforce this
on "pings" in addition to "metrics".  A future version of `glean_parser` [1] will make
this an error and this will set Fenix up to be ready for that.

[1] https://github.com/mozilla/glean_parser/pull/262
4 years ago
mcarare e18afd703c [fenix] For https://github.com/mozilla-mobile/fenix/issues/17364: Make hint scrollable and do not overlap other elements. 4 years ago
mcarare 1668306b55 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17364: Do not show search suggestion hint before starting to type. 4 years ago
rxu f4dd9672c5 [fenix] Add mozcn safebrowsing for release variant 4 years ago
Christian Sadilek 20460641fe [fenix] Refactor WebAppSiteControlsBuilder to use browser store 4 years ago
Mozilla L10n Automation Bot 8f1388b786 [fenix] Import l10n. 4 years ago
Christian Sadilek 8aa8caa944 [fenix] Refactor tryReloadTabBy to use browser store 4 years ago
Sebastian Kaspari b25c0a13b8 [fenix] Remove SessionManager dependency from CustomTabsIntegration. 4 years ago
Elise Richards b41d6160e5 [fenix] Increase date on expired metrics (https://github.com/mozilla-mobile/fenix/pull/17766) 4 years ago
Arturo Mejia b863777940 [fenix] For https://github.com/mozilla-mobile/fenix/issues/12822 - Opt-in of scoped storage 4 years ago
Jonathan Almeida fb997764ca [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/1340: Forward Activity results to the fragment 4 years ago
Oana Horvath 15d4e812d1 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16959: verify page url not content in swipeToSwitchTabTest 4 years ago
AndiAJ c1546655a7 [fenix] Go Forward Test Fix 4 years ago
AndiAJ 1f199794c1 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17641 Fix Intermittent test addPredefinedSearchEngineTest 4 years ago
AndiAJ f2214044fa [fenix] For https://github.com/mozilla-mobile/fenix/issues/16615: UI Smoke Tests for Tab Crash Reporter 4 years ago
Mozilla L10n Automation Bot 77dd1b3c4f [fenix] Import l10n. 4 years ago
jhugman ccbf4d2815 [fenix] Re-enable Nimbus with Off the main thread I/O and non-blocking networking (https://github.com/mozilla-mobile/fenix/pull/17684)
* Moved Nimbus setup from Analytics to its own file

* Change experiment identifiers to fit new run of the experiment

* Re-enable nimbus for debug and nightly builds

* ./gradlew ktlint && detekt
4 years ago
Christian Sadilek 07ddc9ae84 [fenix] Increase AMO collection cache timeout to 2 days 4 years ago
Michael Comella 76864a8ece [fenix] For https://github.com/mozilla-mobile/fenix/issues/17553: renew storage.stats metrics. 4 years ago
Christian Sadilek 3b76735317 [fenix] Remove SessionManager references from UI tests 4 years ago
mawen7 9452247bd9 [fenix] Include selected session in session suggestions if opened from home fragment (https://github.com/mozilla-mobile/fenix/pull/17127) 4 years ago
MickeyMoz fc7ac1ae23 [fenix] Update Android Components version to 73.0.20210129195412. 4 years ago
Mozilla L10n Automation Bot b02f98b4fd [fenix] Import l10n. 4 years ago
Mozilla L10n Automation Bot 16a6ecd95d [fenix] Import l10n. 4 years ago
Michael Comella ba170fe153 [fenix] Revert "For https://github.com/mozilla-mobile/fenix/issues/17447: add intentional delay to cold start up in debug and nightly."
This reverts commit 3a5e6924da81500265c31e00d4499a50d1c4b003. This
intentional regression was only intended to be temporary so now we're
removing it.
4 years ago
Roger Yang 762c10940c [fenix] For https://github.com/mozilla-mobile/fenix/issues/17092: Dismiss toolbar menu when configuration change occurs (https://github.com/mozilla-mobile/fenix/pull/17682) 4 years ago
Jonathan Almeida 8a9b7d2ae0 [fenix] Close https://github.com/mozilla-mobile/fenix/issues/1340: Add support for WebAuthnFeature 4 years ago
rxu 5c17f03edb [fenix] Pop out privacy notice in first launch in MozillaOnline builds
Add privacy notice related strings

Pop out privacy notice with onboarding

Using embeded geckoview to display details about privacy

Present or hide privacy pop window according to isMozillaOnline

Add activity_privacy_content_display.xml into layoutNotToTest due to EngineView
4 years ago
Codrut Topliceanu 5e78e43440 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16828 - Adds telemetry for open in app banner (https://github.com/mozilla-mobile/fenix/pull/17049)
* For https://github.com/mozilla-mobile/fenix/issues/16828 - Adds telemetry for open in app banner

Specifically: Banner displayed, Dismiss action, Go to Settings action.
4 years ago
Jonathan Almeida a4abe9782c [fenix] Close https://github.com/mozilla-mobile/fenix/issues/15979: Add MOZILLA_OFFICIAL flag for release builds
When we build release APKs on Mozilla infrastructure, we want a way to
know this in code for features that would only work on them.
4 years ago
Mozilla L10n Automation Bot 658f44d03a [fenix] Import l10n. 4 years ago
Elise Richards c4e0ad6451 [fenix] Update metrics when an addon is installed or enabled (https://github.com/mozilla-mobile/fenix/pull/17669) 4 years ago
Oana Horvath 4fc2a8b9be [fenix] For https://github.com/mozilla-mobile/fenix/issues/9188: wait for page content to appear in Reader mode tests 4 years ago
Mozilla L10n Automation Bot c553c0d223 [fenix] Import l10n. 4 years ago
Mihai Adrian Carare cc56c0e127 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17655: Do not pass threshold if showTopFrecentSites is false. (https://github.com/mozilla-mobile/fenix/pull/17657)
* For https://github.com/mozilla-mobile/fenix/issues/17655: Do not pass threshold if showTopFrecentSites is false.

* For https://github.com/mozilla-mobile/fenix/issues/17655: Add unit tests for getTopSitesConfig.
4 years ago
Christian Sadilek 2fc49c292f [fenix] Remove SessionManager from BrowserFragment/ToolbarGestureHandler 4 years ago
Roger Yang bca2e3558d [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/17531: Use top sites count fact for top sites telemetry (https://github.com/mozilla-mobile/fenix/pull/17664) 4 years ago
Oana Horvath cd131a47d2 [fenix] For https://github.com/mozilla-mobile/fenix/issues/9188: wait for page load in Reader mode 4 years ago
Roger Yang 2f2945d523 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/17530: Update has open tabs metrics when tabs are opened or closed (https://github.com/mozilla-mobile/fenix/pull/17557) 4 years ago
mcarare f4558b7816 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17464: Handle selected item background programmatically. 4 years ago
Mozilla L10n Automation Bot abc550e2a5 [fenix] Import l10n. 4 years ago
Christian Sadilek 82386ed43e [fenix] Fix breaking API change in FennecMigrator 4 years ago
Gabriel Luong c32923f0ce [fenix] For https://github.com/mozilla-mobile/fenix/issues/14302 - Skip one time pages visit from frecent top sites 4 years ago
mcarare a63b46ef3c [fenix] For https://github.com/mozilla-mobile/fenix/issues/17635: Check if id corresponds to a custom tab before removing it. 4 years ago
Christian Sadilek d013bf3242 [fenix] Refactor HomeFragment to use browser store 4 years ago
Mozilla L10n Automation Bot 3885fcc768 [fenix] Import l10n. 4 years ago
Elise Richards 2b0e65422c [fenix] For https://github.com/mozilla-mobile/fenix/issues/17084: Use in-app browser switching dialog (https://github.com/mozilla-mobile/fenix/pull/17628)
Co-authored-by: hakkikaancaliskan <caliskanhkaan@gmail.com>
4 years ago
Elise Richards fcf3c5f57a [fenix] For https://github.com/mozilla-mobile/fenix/issues/16485: Tabs tray grid view telemetry (https://github.com/mozilla-mobile/fenix/pull/17442)
* Tabs tray CFR telemetry interactions

* Create CFR events and implementation

* Tests for tab tray controller
4 years ago
Sebastian Kaspari 086174a280 [fenix] Refactor ExternalAppBrowserActivity and ExternalAppBrowserFragment to not use Session(Manager). 4 years ago
Arturo Mejia a1246d05f8 [fenix] Remove external download manager FeatureFlags 4 years ago
Arturo Mejia 03c174437d [fenix] Remove autoplay indicator FeatureFlags 4 years ago
Oana Horvath f4db4f019f [fenix] For https://github.com/mozilla-mobile/fenix/issues/16615 & https://github.com/mozilla-mobile/fenix/issues/11191: re-enabled ReaderViewTest and added a UI smoke test 4 years ago
Mozilla L10n Automation Bot d9278db1f3 [fenix] Import l10n. 4 years ago
Mozilla L10n Automation Bot 87c97330a7 [fenix] Import l10n. 4 years ago
Mozilla L10n Automation Bot da5db93b35 [fenix] Import l10n. 4 years ago
Jonathan Almeida 978929f23e [fenix] Fix breaking APIs in ActivityResultHandler 4 years ago
Christian Sadilek 2ff0c55027 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/17473: Intermittent failues of PwaOnboardingObserver 4 years ago
Gabriel Luong 4c2c27d82a [fenix] For https://github.com/mozilla-mobile/fenix/issues/17304 - Implement top site search engine attribution (https://github.com/mozilla-mobile/fenix/pull/17580) 4 years ago
Sebastian Kaspari 8eaf1f7a82 [fenix] Revert "For https://github.com/mozilla-mobile/fenix/issues/17044: Explicitly set a new default engine when default is deleted."
This reverts commit 09f8e82e35f56b35865a67fd4dd4a9b0997b923d.
4 years ago
Oana Horvath d193e6a919 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16615: UI smoke test mainMenuInstallPWATest 4 years ago
Mozilla L10n Automation Bot 675ac17056 [fenix] Import l10n. 4 years ago
Michael Comella dc4c091f2c [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/17451: remove verbose logs with proguard. 4 years ago
ekager 42c74bcd44 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17542 - Removes flash on renaming top site and fixes title not being updated 4 years ago
William Durand cd40b8510e [fenix] Add new BuildConfig variables to support AMO non-production envs 4 years ago
fevziomurtekin 60586d8c37 [fenix] For issue: https://github.com/mozilla-mobile/fenix/issues/16394 Fix UI for consider increasing some elements from ETP-Exceptions page 4 years ago
Jonathan Almeida c7483a0edb [fenix] Use a smaller request code for WebAuthnFeature
We can't see the private API that we interact with on the OS, but after
some internal investigation it appears that there might be an upper
limit to the request code we can use.

For now, let's try a value similar to that use in the GVE code to see
our requests are failing because of that.
4 years ago
Christian Sadilek 73abe98ba7 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/17548: Remove SessionManager reference from TabTrayDialogFragment 4 years ago
Christian Sadilek 525bf428b4 [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/17548: Remove SessionManager reference from TabHistoryDialog 4 years ago
Christian Sadilek 98865d66b0 [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/17548: Remove SessionManager reference from FenixTabsAdapter 4 years ago
Oana Horvath 3f211fe90b [fenix] For https://github.com/mozilla-mobile/fenix/issues/17309, https://github.com/mozilla-mobile/fenix/issues/13447, https://github.com/mozilla-mobile/fenix/issues/14534 UI tests: changed the way page Url is verified 4 years ago
Codrut Topliceanu 2f57dcfdac [fenix] For https://github.com/mozilla-mobile/fenix/issues/17481 - Remove unused long_press_tapped metric (https://github.com/mozilla-mobile/fenix/pull/17544) 4 years ago
Mozilla L10n Automation Bot 4c29292d49 [fenix] Import l10n. 4 years ago
AndiAJ b6a6e4ae41 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16615: UI Smoke Tests for No history in PB and Add to home screen 4 years ago
mcarare 2042857a3c [fenix] For https://github.com/mozilla-mobile/fenix/issues/17044: Explicitly set a new default engine when default is deleted. 4 years ago
Codrut Topliceanu b309321f54 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17377 - Fix for empty awesomeBar on searchFragment open (https://github.com/mozilla-mobile/fenix/pull/17435)
The awesomeBar was set to stay hidden for the first consumeFrom(store) if the SearchDialogFragment.kt. However, recent changes send an additional store update when the view is created. To work around it we can take a look at AwesomeBarView.update(), we see that the awesomeBar suggestions get provided only if the query != url. So we can use the same method to keep the awesomeBar hidden until the user changes anything in the url.
4 years ago
Mozilla L10n Automation Bot 92c425a71c [fenix] Import l10n. 4 years ago
Kate Glazko e511381cf3 [fenix] For https://github.com/mozilla-mobile/fenix/issues/15181: Remove All Downloads From Settings 4 years ago
Christian Sadilek 23496ce12b [fenix] Refactor QuickSettingsDialog to use browser store 4 years ago
Arturo Mejia f42b3c2e14 [fenix] Add dot notification for autoplay blocked content 4 years ago
mcarare 2614789acf [fenix] For https://github.com/mozilla-mobile/fenix/issues/14011: Remove new line character and spaces from string. 4 years ago
Jonathan Almeida 1017c1b136 [fenix] Add experimental WebAuthn support for Nightly only
When testing out WebAuthn support with the privileged API,
we need our app to be signed by an allowed signing key.

We're seeing our tests fail with this error when testing locally:

```
  [FidoApiImpl] updateTransaction is called for stop
  [FidoApiImpl] finishSecurityKeyRequestController should not be called when SecurityKeyRequestController is null.
```

Our theory is that if we try this code on our signed APK, we should see
it work.
4 years ago
AndiAJ 297dbc109e [fenix] For https://github.com/mozilla-mobile/fenix/issues/16615: UI Smoke Tests for Tabs Tray 4 years ago
Christian Sadilek 5964b07cca [fenix] Refactor OpenSpecificTabIntentProcessor to use browser store 4 years ago
Christian Sadilek 4e51c77671 [fenix] Remove SessionManager from TrackingProtectionPanelDialogFragment 4 years ago
Christian Sadilek 5e4d04bc5e [fenix] Refactor CrashReporterFragment to use browser store 4 years ago
Christian Sadilek 0580d3a540 [fenix] Switch to use case when selecting tab for extensions 4 years ago
Christian Sadilek 483d03a98b [fenix] Remove unused NotificationsIntentProcessor 4 years ago
Christian Sadilek f2dd0f0a18 [fenix] Remove unused SessionManager reference from RecentlyClosedController 4 years ago
Jonathan Almeida e76960b389 [fenix] A-C 71.0.20210118134928: Fix breaking API in TabCounterToolbarButton 4 years ago
Sebastian Kaspari 4e676267b7 [fenix] SearchDialogController: Pass tab ID instead of Session instance. 4 years ago
MickeyMoz 0dc93ba95f [fenix] Update Android Components version to 71.0.20210117143132. 4 years ago
AndiAJ f14cc65106 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16615: UI Smoke Tests for Bookmarks
For https://github.com/mozilla-mobile/fenix/issues/16615: UI Smoke Tests for Bookmarks
4 years ago
Oana Horvath bb689c53d5 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16615: Collections UI smoke tests 4 years ago
Michael Comella 0c54ed58ab [fenix] For https://github.com/mozilla-mobile/fenix/issues/17447: add intentional delay to cold start up in debug and nightly.
I validated:
- that the log statement appeared in Nightly but not in Beta.
- that the local runtimes of our perftest increased (the median diff is 124ms)
4 years ago
Arturo Mejia 905f243ceb [fenix] For issue: https://github.com/mozilla-mobile/fenix/issues/16846 Add ui for controlling exceptions for auto play 4 years ago
Sebastian Kaspari 8bc1202159 [fenix] Add unit tests for FennecWebAppIntentProcessor. 4 years ago
Mugurell 426ed78138 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16519: Add space above Delete History button (https://github.com/mozilla-mobile/fenix/pull/17492)
add space above Delete History button

Co-authored-by: Jocelyne Abi Haidar <jocelyne.ah1@gmail.com>
4 years ago
Sebastian Kaspari 8a7505843a [fenix] Migrate some "selected tab" reads from SessionManager to BrowserStore. 4 years ago
Arturo Mejia 82847b2b61 [fenix] For issue https://github.com/mozilla-mobile/fenix/issues/17457: Prevent page refresh when tapping the security icon 4 years ago
codrut.topliceanu df625cd8b9 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16238 - Back button now dismisses Suggested Logins
By using PromptFeature's onBackPressed the user can now press back to dismiss the Suggested Logins prompt without inadvertently navigating back
4 years ago
Mozilla L10n Automation Bot 556fac6f3a [fenix] Import l10n. 4 years ago
mcarare c86f6fdbb5 [fenix] For https://github.com/mozilla-mobile/fenix/issues/10417: Improve reload collection tab testing. 4 years ago
mcarare 997f1f9454 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17400: Select tab opened from collection. 4 years ago
mcarare 34413d3dc8 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16393: Don't show divider above general category when not signed in 4 years ago
Christian Sadilek b0f7acdaff [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/17443: IllegalStateException in startPostponedEnterTransition on HomeFragment 4 years ago
isabelrios 0f6e44f7bc [fenix] Changes to run tests on beta builds (https://github.com/mozilla-mobile/fenix/pull/16786)
* Changes to run tests on beta builds

* remove dontoptime and fix bookmarks tests

* fix ktlint and smokeTest

* add variable for package name

* rebase and fix conflicts

* add yml files and modify script to run tests

* fix yml file indentation

* changes in kind file and add try_task

* fix error kind file

* fix error kind file 2

* fix error kind file 3

* fix reviewer comments

* remove mockwebserver implementation as per reviewer comment

* run beta tests only on releases branches

* reg exp for master branch

* reg exp for master branch2

* modify try_task with release branch

* remove try file

* let's start by running only one test

* address latest reviewers comments

* double check correct tasks for release branch

* remove try file after confirming beta build run

Co-authored-by: isabel rios <isabelrios@MBP-de-isabel-2.home>
4 years ago
Christian Sadilek 1677bb0fc7 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/17441: NPE when invalidating toolbar in response to reader changes 4 years ago
jhugman 152e140c55 [fenix] SDK-158 Use disabled/no-op version of Nimbus object to eliminate unnecessary Rust call (https://github.com/mozilla-mobile/fenix/pull/17372) r=christian 4 years ago
Arturo Mejia e5956c919f [fenix] For https://github.com/mozilla-mobile/fenix/issues/16847: Allow autoplay to controlled via the toolbar. 4 years ago
Sebastian Kaspari 21e848692d [fenix] Update to latest feature-intent and feature-recentlyclosed APIs (and update Android Components). 4 years ago
Oana Horvath ecdf3415d2 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16615: UI smoke test editCustomSearchEngineTest 4 years ago
hakkikaancaliskan 9954d20d0a [fenix] For https://github.com/mozilla-mobile/fenix/issues/12732: Match notification accent color with app theme 4 years ago
Mihai Adrian Carare cca00bd8eb [fenix] For https://github.com/mozilla-mobile/fenix/issues/13522: Also remove history entries from tab history. (https://github.com/mozilla-mobile/fenix/pull/17392)
* For https://github.com/mozilla-mobile/fenix/issues/13522: Also remove history entries from tab history.

* For https://github.com/mozilla-mobile/fenix/issues/13522: Test that deleting history also removes it from tab history.
4 years ago
AndiAJ b8f819b12c [fenix] For https://github.com/mozilla-mobile/fenix/issues/16615: UI Smoke Tests for Recently Closed Tabs 4 years ago
Mozilla L10n Automation Bot 244a3aa65b [fenix] Import l10n. 4 years ago
Oana Horvath 5ac58d8b6e [fenix] For https://github.com/mozilla-mobile/fenix/issues/10798 & https://github.com/mozilla-mobile/fenix/issues/14526: Apply auto-download test file fix for download UI tests 4 years ago
Oana Horvath e4659fac17 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16615: UI smoke test manageDownloadsInDownloadsMenuTest 4 years ago
mcarare 9a85144210 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8716: Authentication custom tab now considers browsing mode. 4 years ago
Mozilla L10n Automation Bot e59185043f [fenix] Import l10n. 4 years ago
Mozilla L10n Automation Bot 6fbc5c55f3 [fenix] Import l10n. 4 years ago
Christian Sadilek 3e346542f4 [fenix] Update Android Components version to 71.0.20210108190105 4 years ago
Suraj Shah 6deab13155 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16271 - Fixes ripple being cut-off in Saved logins sort toolbar (https://github.com/mozilla-mobile/fenix/pull/16741) 4 years ago
Mugurell 8fd1fbcb80 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16249 - ClipboardHandler cleans up returned text 4 years ago
mcarare 90eb9cfad5 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17117: Use proper custom tab session for custom tab toolbar menu. 4 years ago
Mozilla L10n Automation Bot 3e69252df2 [fenix] Import l10n. 4 years ago
Arturo Mejia b3f74a3d66 [fenix] Closes issue https://github.com/mozilla-mobile/fenix/issues/16945 Refactor TrackingProtectionOverlay to observe session via store. 4 years ago
Christian Sadilek edc8c3c7f6 [fenix] Use new RestoreUseCase in A-C to handle tab timeouts 4 years ago
Mozilla L10n Automation Bot 5f8343ec55 [fenix] Import l10n. 4 years ago
Arturo Mejia 72e6e7e69e [fenix] Closes issue https://github.com/mozilla-mobile/fenix/issues/16944 Refactor TrackingProtectionPanelDialogFragment to observe session via store. 4 years ago
mcarare d9e06f581a [fenix] For https://github.com/mozilla-mobile/fenix/issues/15464: Always dismiss search dialog on url committed. 4 years ago
Hakkı Kaan Çalışkan 39c21ff474 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17303: Move ext fun runIfFragmentIsAttached to utils
move to ext
4 years ago
Gabriel Luong 9a60af122f [fenix] For https://github.com/mozilla-mobile/fenix/issues/16790 - Allow top sites to have an empty name when renamed (https://github.com/mozilla-mobile/fenix/pull/17290) 4 years ago
Roger Yang 4e1f40b41b [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/16603: Disable pull down when in fullscreen (https://github.com/mozilla-mobile/fenix/pull/17314) 4 years ago
Marcello Galhardo 06b2366f85 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/17118: Fix font spacing when long pressing a URL (https://github.com/mozilla-mobile/fenix/pull/17164) 4 years ago
Sebastian Kaspari 7e4471eda6 [fenix] Switch to new SessionStorage / session restore API. 4 years ago
Oana Horvath 0a937a28e6 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16966: Remove unnecessary step from mainMenuAddToHomeScreenTest 4 years ago
ekager fa25b4e258 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17177 - Do not show PBM CFR if entering search on home, make sure fragment attached before showing 4 years ago
Mozilla L10n Automation Bot b1d2d00841 [fenix] Import l10n. 4 years ago
Roger Yang 3a9df794c1 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/17298: Turn on new MediaSession feature for all builds (https://github.com/mozilla-mobile/fenix/pull/17302) 4 years ago
Marcello Galhardo 2d3532e04f [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/14009: Fix onboarding 'Sign in to Firefox' ripple effect (https://github.com/mozilla-mobile/fenix/pull/17169)
* Closes https://github.com/mozilla-mobile/fenix/issues/14009: Fix onboarding 'Sign in to Firefox' ripple effect

* For https://github.com/mozilla-mobile/fenix/issues/14009: Add 'onboarding_padded_background_color' instead of rely on OS theme/color

Both previous solution, '?android:attr/colorControlHighlight' and '@color/ripple_material_light' were using a OS theme attr or color, which caused problems. To fix it, we introduced a 'onboarding_padded_background_color' which manually define the ripple effect color of the onboarding manual sign in button.
4 years ago
MarcLeclair c441f2af27 [fenix] 16373 Count the # of inflations done on startup (https://github.com/mozilla-mobile/fenix/pull/16778)
* For https://github.com/mozilla-mobile/fenix/issues/16373: Added performance Inflater to counter # of inflations

This class is quite straight forward. The only thing that I have to point out is the onCreateView method. It usually
calls its super if you don't override it. The problem with that is that the super.onCreateView actually uses
android.view. as a prefix for the XML element it tries to inflate. So if we have an element that isn't part
of that package, it'll crash. As I said in the code, a good example is ImageButton. Calling android.view.ImageButton
will make the app crash. The method is implemented the same way that PhoneLayoutInflater does (Another example
is the AsyncLayoutInflater)

* For https://github.com/mozilla-mobile/fenix/issues/16373: Added test for PerformanceInflater

This test got quite awkward / complicated fast.  I wanted to test the  to make sure we don't break *any* of our layouts
and to do so, I decided to just retrieve all our XML in our /res/layout folder. However, this gets quite a bit outside of a unit test scope.
The point was to get every layouts and get their LayoutID through the resources using the testContext we have. It gets even weirder, since some
of the XML tags have special implementation in android. One of them is the <fragment> tag. That tag actually is inflated by the OS using the Factory2
that the Activity.java implements. In order to get around the fragment issue, we just return a basic FrameLayout since the system LayoutInflater doesn't deal
won't ever get a <fragment> tag to inflate. Another issue was the <merge> tag. In order to inflate those, you need 1) a root view and 2) attach your view to it.
In order to be able to test those layouts file, I had to create an empty FrameLayout and use it as the root view for testing. Again, I know this is beyond the spirit of a unit test but if we use this inflater, I think it should make sure that no layouts are broken by it.

* For https://github.com/mozilla-mobile/fenix/issues/16373: Overrode getSystemService to return PerformanceInflater

This allows PerformanceInflater to be called in every inflation to keep track of the number of inflations we do.

* For https://github.com/mozilla-mobile/fenix/issues/16373: Added UI test for # of inflations

* For https://github.com/mozilla-mobile/fenix/issues/16373: Lint fix

* For #167373: Changed the LayoutInflater cloneInContext to take this instead of inflater

The inflater parameter is set on the first call from the OS from  the Window object. However, the activity itself sets multiple factories on the inflater
during its creation (usually through AppCompatDelegateImpl.java). This means that, once we initially set the inflater with a null check, we pass an inflater
that has no factory initially. However, since we keep a reference to it, when cloneInContext was called, it cloned the inflater with the original inflater
which didn't have any factories set up. This meant that the app would crash on either browserFragment creation or any thing that required appCompat (such as
ImageView and ImageButton). Now, passing itself with a cloneInContext means we keep all the factories initially set by the activity or the fragment.

* For https://github.com/mozilla-mobile/fenix/issues/16373: Fixed code issues for PR. No behavior change

* For https://github.com/mozilla-mobile/fenix/issues/16373: fixed some code nits
4 years ago
mcarare a1bad0fdb9 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16027: Allow elements to be selected separately by a11y services. 4 years ago
Gabriel Luong 8ddbd3a470 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17292 - Remove unused static_strings (https://github.com/mozilla-mobile/fenix/pull/17293) 4 years ago
mcarare 04495bb1cc [fenix] For https://github.com/mozilla-mobile/fenix/issues/15061: Fix error text color in SyncedTabsFragment. 4 years ago
Codrut Topliceanu b71d813d64 [fenix] For https://github.com/mozilla-mobile/fenix/issues/11580 - Tracks text selection context menu usage (https://github.com/mozilla-mobile/fenix/pull/16968)
* For https://github.com/mozilla-mobile/fenix/issues/11580 - Tracks text selection context menu usage

Tracks Copy, Search, Select All and Share items from the text selection context menu. Uses AC's DefaultSelectionActionDelegate to achieve this.

Co-authored-by: Gabriel Luong <gabriel.luong@gmail.com>
4 years ago
Marcello Galhardo 8dbc373df9 [fenix] For https://github.com/mozilla-mobile/fenix/issues/9778 - Site permission settings item height set to 48dp (https://github.com/mozilla-mobile/fenix/pull/17134) 4 years ago
Mozilla L10n Automation Bot 006415d6f3 [fenix] Import l10n. 4 years ago
Mozilla L10n Automation Bot a69b127279 [fenix] Import l10n. 4 years ago
Mozilla L10n Automation Bot de2a97357a [fenix] Import l10n. 4 years ago
Mozilla L10n Automation Bot 9d7a6d3fb8 [fenix] Import l10n. 4 years ago
Mozilla L10n Automation Bot 26abed1e01 [fenix] Import l10n. 4 years ago
Mozilla L10n Automation Bot 708f011ea6 [fenix] Import l10n. 4 years ago
Mozilla L10n Automation Bot 7eb0e5f928 [fenix] Import l10n. 4 years ago
Mozilla L10n Automation Bot c645c56def [fenix] Import l10n. 4 years ago
Christian Sadilek 8cf09fd24f [fenix] For https://github.com/mozilla-mobile/fenix/issues/17073: Stop observers after test run 4 years ago
Mozilla L10n Automation Bot 5c673721f7 [fenix] Import l10n. 4 years ago
Arturo Mejia 05ded2a9cd [fenix] For issue https://github.com/mozilla-mobile/fenix/issues/13981 Use DEEP_LINK_SCHEME instead of hard-coded fenix 4 years ago
Mozilla L10n Automation Bot 9a39c5e586 [fenix] Import l10n. 4 years ago
Elise Richards 6f8721988c [fenix] For https://github.com/mozilla-mobile/fenix/issues/15703 and https://github.com/mozilla-mobile/fenix/issues/17133: allow ETP redirect trackers setting to be customized (https://github.com/mozilla-mobile/fenix/pull/17137)
* Remove ETP redirect trackers feature flag. Add category to ETP panel view.

* Add redirect tracker category to ETP custom settings
4 years ago
ekager 6211d0c2be [fenix] For https://github.com/mozilla-mobile/fenix/issues/17165 - Use application context to get notification localized strings 4 years ago
Christian Sadilek 801db47e22 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/17073: Fix intermittent failures in PwaOnboardingObserverTest 4 years ago
Oana Horvath 67edfe2343 [fenix] Code cleanup in BookmarksRobot and BookmarksTest 4 years ago
Christian Sadilek a7e1ff2c69 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17086 https://github.com/mozilla-mobile/fenix/issues/17143: Temporarily turn off Nimbus 4 years ago
jhugman 6c27e44fa1 [fenix] No bug- protect nimbus init from StrictMode (https://github.com/mozilla-mobile/fenix/pull/17033) r=christian 4 years ago
Christian Sadilek cb2f6a813f [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/16949: Refactor OpenInAppOnboardingObserver to use browser store 4 years ago
Oana Horvath 3827eda678 [fenix] Added a description to each smoke test 4 years ago
Oana Horvath 374a51a8af [fenix] For https://github.com/mozilla-mobile/fenix/issues/16615: UI smoke test noCrashWithAddonInstalledTest 4 years ago
Sebastian Kaspari 52267f2764 [fenix] Switch to new feature-tab-collections API. 4 years ago
ekager 7f5c6d46d5 [fenix] For https://github.com/mozilla-mobile/fenix/issues/13321 - Do not hide toolbar when opening multiple bookmarks (https://github.com/mozilla-mobile/fenix/pull/17038) 4 years ago
mcarare d75514d6fa [fenix] For https://github.com/mozilla-mobile/fenix/issues/16483: Rotate edit arrow when toolbar position is set to bottom. 4 years ago
Mugurell 4ee2151e75 [fenix] For https://github.com/mozilla-mobile/fenix/issues/11578 - Cleanup download telemetry - metrics ping reference
These pings were implemented first as counters.
When changing to events "send_in_pings: - metrics" still remained causing
confusion.
This patch comes to remove this confusion and potential future issues.
4 years ago
mcarare dd2085b6a0 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16068: Update SUMO links. 4 years ago
Mugurell a50340fd25 [fenix] For https://github.com/mozilla-mobile/fenix/issues/15367 - Cleanup metrics ping reference (https://github.com/mozilla-mobile/fenix/pull/17071)
These pings were implemented first as counters.
When changing to events "send_in_pings: - metrics" still remained causing
confusion.
This patch comes to remove this confusion and potential future issues.
4 years ago
mcarare 04611dda64 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17061: Prevent appBarLayout from leaking. 4 years ago
mcarare 78195c8368 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16827: Send copy url metrics correctly. 4 years ago
mcarare 4d286d91ce [fenix] For https://github.com/mozilla-mobile/fenix/issues/15369: Send synced tabs metrics correctly. 4 years ago
Oana Horvath f2f33944df [fenix] For https://github.com/mozilla-mobile/fenix/issues/16615: UI smoke test redirectToAppPermissionsSystemSettingsTest 4 years ago
Kate Glazko f7430161e5 [fenix] For https://github.com/mozilla-mobile/fenix/pull/298: Fenix Quarantine For Delete Downloads UX 4 years ago
Christian Sadilek ac3ca9dbe3 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/17045: Crash caused by calling consumeFlow on wrong thread 4 years ago
ekager 621f31efc9 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16973 - Use controller handled action instead of toolbar focus 4 years ago
Gabriel Luong 29e329d8f1 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16941 - [Telemetry] Bookmark Counts (https://github.com/mozilla-mobile/fenix/pull/16942) 4 years ago