Commit Graph

5047 Commits (f5be19d9feac058f9510174ab3c8d74640eadee5)

Author SHA1 Message Date
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
Christian Sadilek 4a0ad08ed5 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/16946: Refactor PwaOnboardingObserver to use browser store 4 years ago
Sebastian Kaspari 27f4c6b494 [fenix] Add search current/home region to debug screen. (https://github.com/mozilla-mobile/fenix/pull/17015) 4 years ago
Codrut Topliceanu 35eaf646a9 [fenix] For https://github.com/mozilla-mobile/fenix/issues/15368 - Adds telemetry for fullscreen, pip (https://github.com/mozilla-mobile/fenix/pull/16833) 4 years ago
mcarare 8ad1fdea2d [fenix] For https://github.com/mozilla-mobile/fenix/issues/16827: Add copy url from long press metrics. 4 years ago
mcarare 20cff480b7 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16827: Add documentation for copy url metrics. 4 years ago
mcarare c1216c5079 [fenix] For https://github.com/mozilla-mobile/fenix/issues/15369: Add synced tabs usage metrics. 4 years ago
mcarare 1e9604d03a [fenix] For https://github.com/mozilla-mobile/fenix/issues/15369: Add documentation for synced tabs opening metrics. 4 years ago
mcarare 86118316f8 [fenix] For https://github.com/mozilla-mobile/fenix/issues/15366: Add recently closed tabs metrics from history fragment. 4 years ago
mcarare de2d1d9fd9 [fenix] For https://github.com/mozilla-mobile/fenix/issues/15366: Add recently closed tabs metrics. 4 years ago
mcarare d404bd76d2 [fenix] For https://github.com/mozilla-mobile/fenix/issues/15366: Add documentation for recently closed tabs metrics. 4 years ago
mcarare 2d3fdfdf54 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16422: Handle theme for tab history bottom sheet. 4 years ago
Mugurell 6019e8c907 [fenix] For https://github.com/mozilla-mobile/fenix/issues/15367 - DownloadsFragment telemetry (https://github.com/mozilla-mobile/fenix/pull/16728)
Adds a counter for how many times the user does the following action:
- opens the Downloads section inside the app
- tap to open an item from inside Downloads / from the download dialog
- tap to delete one or more downloads at once
4 years ago
Mugurell cf4631c5c3 [fenix] For https://github.com/mozilla-mobile/fenix/issues/11578 - Add telemetry for how many times we download something (https://github.com/mozilla-mobile/fenix/pull/16730) 4 years ago
mcarare 3eec6ec15f [fenix] For https://github.com/mozilla-mobile/fenix/issues/16992: Align clipboard link and text with scan button. 4 years ago
Michael Debertol 82bc38f76b [fenix] For https://github.com/mozilla-mobile/fenix/issues/4333: Open the keyboard when a search engine is selected (https://github.com/mozilla-mobile/fenix/pull/14353)
Co-authored-by: Elise Richards <erichards@mozilla.com>
4 years ago
Arturo Mejia 9a3a4faf12 [fenix] For issue https://github.com/mozilla-mobile/fenix/issues/16847 Show the autoplay icon in the toolbar 4 years ago
ekager b5fccc3989 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16937 - Ensure FIP is removed on navigation 4 years ago
ekager 1da195c2fe [fenix] For https://github.com/mozilla-mobile/fenix/issues/16675 For https://github.com/mozilla-mobile/fenix/issues/16398 - Fix button styling 4 years ago
Jeff Boek 02a1474cff [fenix] For https://github.com/mozilla-mobile/fenix/issues/15403 - Adds a secret debug info screen in settings (https://github.com/mozilla-mobile/fenix/pull/15540)
Co-authored-by: Elise Richards <erichards@mozilla.com>
4 years ago
ekager cbf04e3fb8 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16807 - Make sure there's only one instance of search dialog 4 years ago
Elise Richards 0f3b3668db [fenix] Remove hidden fab in tabs tray (https://github.com/mozilla-mobile/fenix/pull/16972) 4 years ago
Codrut Topliceanu 28d0d32a53 [fenix] For https://github.com/mozilla-mobile/fenix/issues/15636 - Focus a11y collection on snackbar view tap (https://github.com/mozilla-mobile/fenix/pull/16853)
With accessibility enabled, when adding a site to a collection and tapping "View" on the snackbar, we send a request for focus and an `AccessibilityEvent.TYPE_VIEW_FOCUSED` to the specified collection.
4 years ago
jhugman 2ac76ff4ce [fenix] Add withExperiment extension method to Nimbus (https://github.com/mozilla-mobile/fenix/pull/16926) r=christian, sebastian
* Fixes https://github.com/mozilla-mobile/fenix/issues/16925 Add withExperiment extension method to Nimbus
* Don't call Nimbus at all if not enabled by FeatureFlag
4 years ago
Oana Horvath 55a253d5c1 [fenix] Fix https://github.com/mozilla-mobile/fenix/issues/16960 & https://github.com/mozilla-mobile/fenix/issues/16959: updateSavedLoginTest, swipeToSwitchTabTest UI smoke tests 4 years ago
Roger Yang 9dee73b238 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/16075: Add distribution_id in telemetry startup metrics (https://github.com/mozilla-mobile/fenix/pull/16821) 4 years ago
Christian Sadilek 5e9e8eca63 [fenix] Prepare for A-C Session[Manager] observable deprecation 4 years ago
Mozilla L10n Automation Bot edb0247634 [fenix] Import l10n. 4 years ago
ekager 361b86b5e6 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16442 - Check if fragment is still attached before updating site permissions rules (https://github.com/mozilla-mobile/fenix/pull/16954) 4 years ago
jhugman 6210ff136d [fenix] Fixes https://github.com/mozilla-mobile/fenix/issues/16948: call nimbus.updateExperiments on startup (https://github.com/mozilla-mobile/fenix/pull/16950) r=gl 4 years ago
mcarare 6727d044c1 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16894: Handle adding voice search button depending on state. 4 years ago
mcarare 9c15fe3321 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16775: Fallback to light mode drawable when ui mode is not resolved 4 years ago
mcarare 07366516cc [fenix] For https://github.com/mozilla-mobile/fenix/issues/15640: Remove private resources from RadioButtonPreference. 4 years ago
mcarare fad5cfe71d [fenix] For https://github.com/mozilla-mobile/fenix/issues/15640: Remove private resources from TextPercentageSeekBarPref. 4 years ago
mcarare f2aa43e0ca [fenix] For https://github.com/mozilla-mobile/fenix/issues/15640: Increase PrivateResource warning severity to error. 4 years ago
Mozilla L10n Automation Bot 13a35f954f [fenix] Import l10n. 4 years ago
ekager f92d2a9ef8 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16668 - Fix keyboard show/hide from search dialog fragment 4 years ago
Kate Glazko 1e7a67d0ca [fenix] For https://github.com/mozilla-mobile/fenix/issues/16541: Download UX Updates 4 years ago
Christian Sadilek 61e10d8561 [fenix] Update IntentProcessors after breaking API change 4 years ago
Emilio Cobos Álvarez 042f7dd697 [fenix] Add support for EME permission.
This accompanies the changes in https://github.com/mozilla-mobile/android-components/pull/9121.

Closes https://github.com/mozilla-mobile/fenix/issues/1175
4 years ago
Mugurell ee96af1b9a [fenix] For https://github.com/mozilla-mobile/fenix/issues/13427 - Disable the "selected tab" decoration when in Multiselect
Selecting a tab while in Multiselect would add a different decoration to the one
already set for the last tab opened and this would confuse users.
Let's avoid this.
4 years ago
Christian Sadilek de8ef956c8 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/11290: Refactor ToolbarMenu to use browser store 4 years ago
Roger Yang 30305ae436 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/16896: Integrate new MediaSession API to nightly or debug builds (https://github.com/mozilla-mobile/fenix/pull/16909) 4 years ago
Oana Horvath 32c0bbedc2 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16615: UI smoke test updateSavedLoginTest 4 years ago
Oana Horvath dc981275c1 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16615: UI smoke test startBrowsingButtonTest 4 years ago
Mozilla L10n Automation Bot 984f814ba8 [fenix] Import l10n. 4 years ago
Elise Richards bfe1ad1961 [fenix] Reload restored tabs from collection (https://github.com/mozilla-mobile/fenix/pull/16865) 4 years ago
Sebastian Kaspari 89b697a9bd [fenix] Update Android Components to 69.0.20201207103252. 4 years ago
Mozilla L10n Automation Bot 8bb43cf365 [fenix] Import l10n. 4 years ago
Mozilla L10n Automation Bot 7bddbe4097 [fenix] Import l10n. 4 years ago
ekager 4328204fc6 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16397 - Fixes SignOutFragment crash and invisible button 4 years ago
Oana Horvath 5605cec052 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16615: Smoke UI test swipeToSwitchTabTest 4 years ago
Mugurell 7421ad5026 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16248 - Cleanup error pages of inlined code (https://github.com/mozilla-mobile/fenix/pull/16834)
Also streamlined the js code.
The errorPageScripts.js from AC had too much or too little of what we needed.
4 years ago
Roger Yang 2dd89dfed4 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16133: Simplify OpenInAppOnboardingObserver condition (https://github.com/mozilla-mobile/fenix/pull/16851) 4 years ago
Philipp Klein 7d2fb5c3b1 [fenix] For https://github.com/mozilla-mobile/fenix/issues/15362: Remove swipe to delete for bookmarks (https://github.com/mozilla-mobile/fenix/pull/16646)
Removed now obsolete feature flag and tests.
Removed obsolete swipe refresh state from BookmarkFragmentState
Also adapted tests and remove obsolete ones.
4 years ago
Mozilla L10n Automation Bot 7997151b5d [fenix] Import l10n. 4 years ago
Elise Richards 198c065970 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/8791: Use A-C tab counter and upgrades to A-C 69.0.20201203202830
Upgrades to A-C 69.0.20201203202830 and addresses breaking changes:
- Upgrades androidx workmanager to 2.4.0 in line with A-C.
- RecordingDevicesNotificationFeature was removed
- SearchUseCases accept parent session ID instead of session itself
4 years ago
Codrut Topliceanu 6c07bc316f [fenix] For https://github.com/mozilla-mobile/fenix/issues/16629 - Fix for collection snackbar View button (https://github.com/mozilla-mobile/fenix/pull/16679) 4 years ago
Oana Horvath 01caa9bfaf [fenix] For https://github.com/mozilla-mobile/fenix/issues/16838: deleted mainMenuOpenInAppTest 4 years ago
Jonathan Almeida 29047c674f [fenix] Fix breaking changes from FCM SDK update 4 years ago
jhugman 1c0e70d647 [fenix] Nimbus-SDK-119 Get Nimbus server endpoint at build time. (https://github.com/mozilla-mobile/fenix/pull/16682)
This PR builds on [AC#https://github.com/mozilla-mobile/fenix/pull/9024][1], and implements setting the Nimbus endpoints from [a secret set at build time][2].

For production use, this requires a secret named `nimbus_url` to be put into CI.

Note: Nimbus is currently behind a feature flag.

If developers wish to use a Nimbus server for local development, you can set the url by adding an entry into local.properties, e.g.:

```
nimbus.remote-settings.url=https://settings.stage.moz4ws.net
```

Without setting server, Nimbus will be able to function, except no experimental definitions will be fetched, and features under experiment will be configured as if not enrolled in the experiment.

[1]: https://github.com/mozilla-mobile/android-components/pull/9024
[2]: https://groups.google.com/a/mozilla.com/g/android-components-team/c/lAGVKQy8aiA/m/rY3uGAwhBAAJ
4 years ago
jhugman d1a41ce4cf [fenix] Adding menu configuration for A/A experiment and A/B experiment (https://github.com/mozilla-mobile/fenix/pull/16692) 4 years ago
Mozilla L10n Automation Bot 79f784b127 [fenix] Import l10n. 4 years ago
Christian Sadilek c549b71c2a [fenix] For https://github.com/mozilla-mobile/fenix/issues/16032: Support installing recommended add-ons from AMO 4 years ago
Roger Yang 9d092df86b [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/16603: Disable pull down refresh when activity is in immersive mode (https://github.com/mozilla-mobile/fenix/pull/16793) 4 years ago
Oana Horvath 5d93a533c5 [fenix] Split UI smoke tests into smaller tests 4 years ago
Mozilla L10n Automation Bot aad3ac3c60 [fenix] Import l10n. 4 years ago
Mozilla L10n Automation Bot b423bdf739 [fenix] Import l10n. 4 years ago
Sebastian Kaspari 73ae4c9c72 [fenix] ExternalAppBrowserActivity: Add additional test cases. 4 years ago
Sebastian Kaspari 1e4efa280d [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/16435: Open custom tab in Fenix: Force launch outside of and remove current task. 4 years ago
Sebastian Kaspari c2bde5c8d8 [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/16435: Finish ExternalAppBrowserActivity and remove task if linked tab doesn't exist anymore.
This doesn't fix the underlying issue of https://github.com/mozilla-mobile/fenix/issues/16435, but a symptom we have seen quite often in different
situations: When the ExternalAppBrowserActivity is not linked to a tab anymore then it falls back
to displaying a (partially broken) browser UI. With multiple browser activities at the same time
sooner or later we crash with a "display already acquired" error because both activities try to
render the same tab.
4 years ago
mcarare 255e8aab73 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16759: Prevent crash on showing info banner. 4 years ago
Sebastian Kaspari 9b853166ac [fenix] FenixApplication: Remove unused kinto endpoint. 4 years ago
Sebastian Kaspari 668e8d62af [fenix] Introduce build flag for configuring test build type. 4 years ago
Sebastian Kaspari 0f988d0bc6 [fenix] Introduce build flag for disabling optmization. 4 years ago
Sebastian Kaspari cb755e7ba4 [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/12731: Log and record breadcrumb when onTrimMemory() gets invoked. 4 years ago
Mozilla L10n Automation Bot 1718783b68 [fenix] Import l10n. 4 years ago
Mozilla L10n Automation Bot 1cf4e739c8 [fenix] Import l10n. 4 years ago
Mozilla L10n Automation Bot 7bd9a14907 [fenix] Import l10n. 4 years ago
Oana Horvath 4c8f1ae2e5 [fenix] Updates to UI tests using the modified recyclerViewIdlingResources minItemCount 4 years ago
Oana Horvath fdda2e3001 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16615: UI smoke test toggleSearchSuggestions 4 years ago
Mozilla L10n Automation Bot 100fce7d08 [fenix] Import l10n. 4 years ago
Mihai Adrian Carare 8657e63f3c [fenix] For https://github.com/mozilla-mobile/fenix/issues/16745 - Allow preference layout to increase height if needed. (https://github.com/mozilla-mobile/fenix/pull/16752) 4 years ago
Mihai Adrian Carare 9edf548f87 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16735 - Do not show grid view CFR if grid view is already selected. (https://github.com/mozilla-mobile/fenix/pull/16740) 4 years ago
ekager a0aeb5eb0a [fenix] For https://github.com/mozilla-mobile/fenix/issues/16676 - Do not switch mode on last private tab via tab context menu 4 years ago
Mozilla L10n Automation Bot a2f959ac54 [fenix] Import l10n. 4 years ago
Oana Horvath fd7a4002e3 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16615: UI smoke test addPredefinedSearchEngineTest 4 years ago
Mozilla L10n Automation Bot 0eab319d99 [fenix] Import l10n. 4 years ago
Codrut Topliceanu 8556ebe1fe [fenix] For https://github.com/mozilla-mobile/fenix/issues/16592 - Fix missing collection snackbar for a11y (https://github.com/mozilla-mobile/fenix/pull/16593)
Set null anchor for snackbar when using a11y services
4 years ago
Mozilla L10n Automation Bot 47071ea018 [fenix] Import l10n. 4 years ago
mcarare e68c318f1f [fenix] For https://github.com/mozilla-mobile/fenix/issues/16353: Avoid strict mode death on reading onboarding preference. 4 years ago
mcarare a1b3273427 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16353: Add unit tests for onboarding finishing conditions. 4 years ago
mcarare e377bad9b3 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16353: Finish onboarding on loading a web page, with exceptions. 4 years ago
mcarare 1f4134904d [fenix] For https://github.com/mozilla-mobile/fenix/issues/16353: Do not finish onboarding on search dialog opening. 4 years ago
Mozilla L10n Automation Bot 9bc931951c [fenix] Import l10n. 4 years ago
Mozilla L10n Automation Bot ef4e5fa26a [fenix] Import l10n. 4 years ago
Mozilla L10n Automation Bot c5f89e77a7 [fenix] Import l10n. 4 years ago
ekager 09c687da86 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16351 - Add divider lines for search dialog 4 years ago
Sebastian Kaspari d50140272a [fenix] Integrate new search code from Android Components into Fenix. 4 years ago
MickeyMoz 6a02e68f96 [fenix] Update Android Components version to 68.0.20201120125142. 4 years ago
Mozilla L10n Automation Bot ac279d3785 [fenix] Import l10n. 4 years ago
mcarare 14649806c3 [fenix] For https://github.com/mozilla-mobile/fenix/issues/15788: Remove fixed issues from lint baseline. 4 years ago
jhugman d001a5aa36 [fenix] Nimbus Global Opt Out (https://github.com/mozilla-mobile/fenix/pull/16543) r=gl 4 years ago
Mozilla L10n Automation Bot 996d511732 [fenix] Import l10n. 4 years ago
ekager 29eb6e9d1f [fenix] For https://github.com/mozilla-mobile/fenix/issues/16351 - Make homescreen interactive when search dialog is up 4 years ago
mcarare 55d0e28abf [fenix] For https://github.com/mozilla-mobile/fenix/issues/15788: Remove nested constraint layout in tabs tray. 4 years ago
mcarare 56bc46801c [fenix] For https://github.com/mozilla-mobile/fenix/issues/15788: Remove nested layouts in search dialog layout. 4 years ago
Oana Horvath a87dce7523 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16615: UI smoke test firstRunScreenTest 4 years ago
mozilla-l10n-automation-bot 6257824745 [fenix] Import l10n. (https://github.com/mozilla-mobile/fenix/pull/16625) 4 years ago
Jonathan Almeida 36d8481c96 [fenix] Update Android Components to 67.0.20201117165227 (https://github.com/mozilla-mobile/fenix/pull/16619) 4 years ago
ekager 49a98cb413 [fenix] For https://github.com/mozilla-mobile/fenix/issues/12062 - Remove feature flag for return to browser (https://github.com/mozilla-mobile/fenix/pull/16622) 4 years ago
Mugurell d23db3c8ee [fenix] For https://github.com/mozilla-mobile/fenix/issues/16614 - Ensure a stable order for the items in tabs tray. (https://github.com/mozilla-mobile/fenix/pull/16618)
Items should follow the following ordering:
- current session open tabs
- collections options - currently the "Select tabs" button
- synced tabs items

This order should also be kept after returning from Multiselect mode.
4 years ago
Bryan Kok 42de52ac1c [fenix] Replace @string/tab_tray_menu_item_save with @string/tab_tray_menu_select, Remove "Share all tabs" option from tab tray's private browsing menu 4 years ago
ekager ad95b57c30 [fenix] For https://github.com/mozilla-mobile/fenix/issues/15091 - Fixes RecentlyClosedAdapter DiffCallback (https://github.com/mozilla-mobile/fenix/pull/16608) 4 years ago
Mozilla L10n Automation Bot 49a94ee0f4 [fenix] Import l10n. 4 years ago
Christian Sadilek 2256f29d23 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/16153: Intermittent failures of ShareControllerTest.handleShareToApp 4 years ago
mcarare 85aa2f4fc9 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16420: Make search bar first view focused by a11y services on open. 4 years ago
Christian Sadilek 0e37184204 [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/16587: Make sure tab counter correctly reflects private/normal tab counts 4 years ago
Christian Sadilek df087718e1 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/16053: Fix crash when closing private tabs via notification 4 years ago
MickeyMoz ee11970d27 [fenix] Update Android Components version to 67.0.20201115143123. 4 years ago
Mozilla L10n Automation Bot 46dc099762 [fenix] Import l10n. 4 years ago
Jonathan Almeida 8fd55d87f0 [fenix] For https://github.com/mozilla-mobile/fenix/issues/13477 - Move BiometricPrompt to a separate feature (https://github.com/mozilla-mobile/fenix/pull/16498)
Instead of simply fixing the memory leak for this issue by directly
removing references, it makes more sense to move the whole
BiometricPrompt out of the fragment and into it's own feature to be
re-usable.
4 years ago
Mihai Adrian Carare d68aee5549 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16511 - Change a11y parent of button without breaking the tab list. (https://github.com/mozilla-mobile/fenix/pull/16555) 4 years ago
Mozilla L10n Automation Bot 8a3749c8bf [fenix] Import l10n. 4 years ago
Michael Comella 159b13bb8f [fenix] No issue: move TestStrictModeManager to perf sub package. 4 years ago
Michael Comella a6cef89dc2 [fenix] No issue: move StrictModeManager to perf package.
While StrictMode is not exclusively used for performance purposes, it's
primarily used for perf purposes so let's move it to the perf package
and code owner it.
4 years ago
Michael Comella 39384786dd [fenix] For https://github.com/mozilla-mobile/fenix/issues/16376: move Startup*Test to perf pkg under code owners.
Instead of listing many different files here, we should just put them in
/perf/ packages and code owner them.
4 years ago
Michael Comella d5f666cbf3 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16376: assert num ConstraintLayout direct descend RecyclerView.
I'm not convinced this is a useful test because the performance
characteristics seem unfortunately nuanced: if the test fails, it implies
you shouldn't add more but that isn't necessarily true (for example, if
your RV child has a large depth). Furthermore, we haven't measured in a
variety of circumstances that layouts like LinearLayout perform better
as RecyclerView children so maybe it only held for the one small case we
used it in.
4 years ago
Michael Comella 414a046263 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16376: test view hierarchy depth in StartupExcessive*Test. 4 years ago
Jocelyne Abi Haidar 4f82163e36 [fenix] For https://github.com/mozilla-mobile/fenix/issues/15725: Set up preferences in onCreatePreferences instead of onResume
set up preferences in onCreatePreferences instead of onResume so that their visibility is determined before the screen appears rather than after
4 years ago
Oana Horvath 6b4fbca1bb [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/12899: fixed UI test for ETP off 4 years ago
mcarare 1ed7efce41 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16477: Switch to using an extension to update a11y collection info. 4 years ago
mcarare 2302a589da [fenix] For https://github.com/mozilla-mobile/fenix/issues/16477: Migrate updateAccessibilityCollectionItemInfo to extension. 4 years ago
mcarare 33e8a2b22b [fenix] For https://github.com/mozilla-mobile/fenix/issues/16477: Update a11y info to collection item for both grid and list. 4 years ago
Bryan Kok 2b0c11aae1 [fenix] Replace lingering occurence of ic_hollow_share with ic_share_filled (https://github.com/mozilla-mobile/fenix/pull/16548) 4 years ago
Mugurell f73385df4a [fenix] For https://github.com/mozilla-mobile/fenix/issues/16461 - Ensure the proper items order after exiting Multiselect (https://github.com/mozilla-mobile/fenix/pull/16482) 4 years ago
LeoMaldonado 957e30453b [fenix] Fixes Comment on https://github.com/mozilla-mobile/fenix/issues/16563: DefaultToolbarMenu registering for bookmark changes
comment link: https://github.com/mozilla-mobile/fenix/pull/16536#discussion_r522387945
4 years ago
LeoMaldonado 60820051d1 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/16345: Update share icon shape
updating share icon to a filled shape, like default toolbar menu across all app
4 years ago
LeoMaldonado c6e4316e75 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16345: use same share icon across all app
replace mozac_ic_share for ic_hollow_share on DefaultToolbarMenu
4 years ago
Gabriel Luong 4a21bcd11c [fenix] For https://github.com/mozilla-mobile/fenix/issues/15761 - [Grid View] Enable the grid view and remove its feature flag (https://github.com/mozilla-mobile/fenix/pull/16546)
* For https://github.com/mozilla-mobile/fenix/issues/15761 - Part 1: Turn ON the showGridViewInTabsSettings feature flag

* For https://github.com/mozilla-mobile/fenix/issues/15761 - Part 2: Remove the showGridViewInTabsSettings feature flag and show the Tab view preference category
4 years ago
mozilla-l10n-automation-bot 3f3bd2e52c [fenix] Import l10n. (https://github.com/mozilla-mobile/fenix/pull/16486) 4 years ago
Gabriel Luong 70fb6a8d7a [fenix] Revert "For https://github.com/mozilla-mobile/fenix/issues/15761 - [Grid View] Enable the grid view and remove its feature flag (https://github.com/mozilla-mobile/fenix/pull/16535)" (https://github.com/mozilla-mobile/fenix/pull/16544)
This reverts commit cb340e88f265cc16ba05edaa54c3a99164560438.
4 years ago
rxumoz c8ce71a622 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16451 - Change default top sites to Baidu & JD in China build (https://github.com/mozilla-mobile/fenix/pull/16515)
* Add top sites related strings

* Change default top sites to Baidu & JD in China build
4 years ago
Gabriel Luong 350be5af87 [fenix] For https://github.com/mozilla-mobile/fenix/issues/15761 - [Grid View] Enable the grid view and remove its feature flag (https://github.com/mozilla-mobile/fenix/pull/16535) 4 years ago
Mugurell 6486465645 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16076 - Link data review for the share_image telemetry (https://github.com/mozilla-mobile/fenix/pull/16534) 4 years ago
ekager c129fa2aba [fenix] For https://github.com/mozilla-mobile/fenix/issues/16132 - Rename normal mode menu item, remove telemetry 4 years ago
Gabriel Luong a1e4f02882 [fenix] For https://github.com/mozilla-mobile/fenix/issues/14920 - Show a Tabs Tray CFR Banner for grid view tip (https://github.com/mozilla-mobile/fenix/pull/16466) 4 years ago
Sebastian Kaspari ab1e56ef5b [fenix] For https://github.com/mozilla-mobile/fenix/issues/16302 - Use larger heap size when running unit tests and fork new process after every 80 test classes. (https://github.com/mozilla-mobile/fenix/pull/16526) 4 years ago
Codrut Topliceanu 63e2bd3f9e [fenix] For https://github.com/mozilla-mobile/fenix/issues/11376 - Reverse tabs list order (https://github.com/mozilla-mobile/fenix/pull/16245) 4 years ago
Oana Horvath 73e14dd776 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/13217: fixed UI test for main menu items 4 years ago
Johan Lorenzo 31d379f36d [fenix] Revert "Update Android Components version to 66.0.20201111143206."
This reverts commit 3a07e10eefe64d955de3b71221bb99e7cfc6b039.
4 years ago
Kate Glazko f962ee2d08 [fenix] For https://github.com/mozilla-mobile/fenix/issues/14772: Crash in Downloads 4 years ago
Mugurell 0afd4bdae5 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16076 - Add new "share_image" telemetry event 4 years ago
MickeyMoz 34196ed813 [fenix] Update Android Components version to 66.0.20201111143206. 4 years ago
Mugurell 9abf05e7fc [fenix] For https://github.com/mozilla-mobile/fenix/issues/16500 - Ensure CardView clips ImageView on lower APIs (https://github.com/mozilla-mobile/fenix/pull/16507)
ImageViews are normally not clipped but extend to cover the entire width and
height set.
CardViews as a parent can help with that but on lower APIS they still need a
shapeAppearance which is a property already in the added style.
4 years ago
mcarare f535d467cc [fenix] For https://github.com/mozilla-mobile/fenix/issues/16416: Remove save to collection button from tab a11y list. 4 years ago
ekager a197281092 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16132 - Revise multiselect mode UI 4 years ago
mozilla-l10n-automation-bot 9e347d601f [fenix] Import l10n. (https://github.com/mozilla-mobile/fenix/pull/16468) 4 years ago
Mugurell da543114c3 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16424 - Focus the right item in tabs tray when using Talkback (https://github.com/mozilla-mobile/fenix/pull/16472)
To get the index of the current selected browser tab when using reverse layout
we should also account for items placed below of the browser tabs.
The patch here unifies the logic already used for some calls but not all.
4 years ago
Codrut Topliceanu 23ff2851e6 [fenix] For https://github.com/mozilla-mobile/fenix/issues/15720 - Remove unused telemetry (https://github.com/mozilla-mobile/fenix/pull/15887) 4 years ago
Gabriel Luong ebc1ba3b50 [fenix] For https://github.com/mozilla-mobile/fenix/issues/15960 - Enable Grid View in Nightly only (https://github.com/mozilla-mobile/fenix/pull/16462) 4 years ago
mcarare 85d00ac291 [fenix] For https://github.com/mozilla-mobile/fenix/issues/16426: Allow multiselect title to be selected by a11y services. 4 years ago
mozilla-l10n-automation-bot c32bbcc3e8 [fenix] Import l10n. (https://github.com/mozilla-mobile/fenix/pull/16447) 4 years ago
Christian Sadilek 70852916d6 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/16430: ExternalAppBrowserActivity should not handle incoming intents 4 years ago
mozilla-l10n-automation-bot 3ab61bec1b [fenix] Import l10n. (https://github.com/mozilla-mobile/fenix/pull/16441) 4 years ago
Mihai Adrian Carare 489e8cc970 [fenix] For https://github.com/mozilla-mobile/fenix/issues/15764 - Update Tabs summary description. (https://github.com/mozilla-mobile/fenix/pull/16428) 4 years ago
Christian Sadilek 0ccff38ebc [fenix] Update Android Components version to 66.0.20201106143126 (https://github.com/mozilla-mobile/fenix/pull/16439) 4 years ago
Oana Horvath 2748519959 [fenix] For https://github.com/mozilla-mobile/fenix/issues/15847: use Espresso's RecyclerView scrollTo action 4 years ago
Mozilla L10n Automation Bot 77cfcd82c3 [fenix] Import l10n. 4 years ago
Christian Sadilek 80e9e1fa8e [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/16327: Refactor MenuPresenter to use browser store 4 years ago
Arturo Mejia 8cc09b5785 [fenix] For issue https://github.com/mozilla-mobile/fenix/issues/15934 fix ConcurrentModificationException
on WifiConnectionMonitor
4 years ago
Sebastian Kaspari 84770f1f64 [fenix] Fix GeckoProvider for beta and release variant. 4 years ago
rxu 3ec2a3d971 [fenix] Add mozcn safebrowsing 4 years ago
Michael Comella c481d0504b [fenix] For https://github.com/mozilla-mobile/fenix/issues/15279 - review: set LazyMonitored to private. 4 years ago
Michael Comella 17b32070dd [fenix] For https://github.com/mozilla-mobile/fenix/issues/15279: add component init count to StartupExcessiveResourceUseTest. 4 years ago
Michael Comella 7ac4b40fa8 [fenix] For https://github.com/mozilla-mobile/fenix/issues/15279: remove redundant lazy wrapper from storage APIs.
They're currently lazy { lazy { value } }. Accessing `lazy.value`
directly allows us to make it lazy { value }. This should be more
performant and prevents us from double-counting these components.
4 years ago
Michael Comella 9e8fd7c6f0 [fenix] For https://github.com/mozilla-mobile/fenix/issues/15279: LazyMonitored implement Lazy + update built-in API use.
By having LazyMonitored implement Lazy, we can continue to pass these
values directly into the ac APIs that require Lazy references. For some
reason, implementing `Lazy.value` can replace `operator fun getValue`
required for delegates.
4 years ago
Michael Comella 3879697c06 [fenix] For https://github.com/mozilla-mobile/fenix/issues/15279: replace lazy with lazyMonitored in component groups.
By component groups, I mean I applied this to any class with the
class kdoc, "Component group for...".

There are a few instances of lazy we had to keep using the old API to
avoid having to update constructor arguments.
4 years ago
Michael Comella 07e69195f2 [fenix] For https://github.com/mozilla-mobile/fenix/issues/15279: add LazyMonitored and tests. 4 years ago
mozilla-l10n-automation-bot 83cf8baedf [fenix] Import l10n. (https://github.com/mozilla-mobile/fenix/pull/16380) 4 years ago
Kate Glazko 88375a2294 [fenix] For https://github.com/mozilla-mobile/fenix/issues/352: Delete a download 4 years ago
ekager 5344dceead [fenix] No issue: Update stable androidx and material versions 4 years ago