2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-11 13:11:01 +00:00
Commit Graph

3247 Commits

Author SHA1 Message Date
Gabriel Luong
d0fc086fc4
For #16790 - Allow top sites to have an empty name when renamed (#17290) 2021-01-05 16:59:41 -05:00
Roger Yang
afa0454f2b
Closes #16603: Disable pull down when in fullscreen (#17314) 2021-01-05 15:34:44 -05:00
Sebastian Kaspari
1b6cebf4d4 Switch to new SessionStorage / session restore API. 2021-01-05 17:11:57 +01:00
ekager
d5f625c945 For #17177 - Do not show PBM CFR if entering search on home, make sure fragment attached before showing 2021-01-04 20:23:43 -08:00
Roger Yang
7527851cf0
Closes #17298: Turn on new MediaSession feature for all builds (#17302) 2021-01-04 15:12:43 -05:00
MarcLeclair
24bce64e0b
16373 Count the # of inflations done on startup (#16778)
* For #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 #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 #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 #16373: Added UI test for # of inflations

* For #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 #16373: Fixed code issues for PR. No behavior change

* For #16373: fixed some code nits
2021-01-04 11:00:34 -05:00
mcarare
2d1df018ff For #15061: Fix error text color in SyncedTabsFragment. 2021-01-04 16:42:30 +02:00
Codrut Topliceanu
c0f0c401f3
For #11580 - Tracks text selection context menu usage (#16968)
* For #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>
2021-01-04 16:28:01 +02:00
Arturo Mejia
81f208bda1 For issue #13981 Use DEEP_LINK_SCHEME instead of hard-coded fenix 2020-12-23 10:47:57 -05:00
Elise Richards
6dadecacc2
For #15703 and #17133: allow ETP redirect trackers setting to be customized (#17137)
* Remove ETP redirect trackers feature flag. Add category to ETP panel view.

* Add redirect tracker category to ETP custom settings
2020-12-22 11:43:04 -06:00
ekager
d3e1045ab9 For #17165 - Use application context to get notification localized strings 2020-12-22 09:39:30 -08:00
Christian Sadilek
36a6d364a7 For #17086 #17143: Temporarily turn off Nimbus 2020-12-21 10:45:03 -05:00
jhugman
4565d7381b
No bug- protect nimbus init from StrictMode (#17033) r=christian 2020-12-19 15:26:48 +00:00
Christian Sadilek
0b99669753 Closes #16949: Refactor OpenInAppOnboardingObserver to use browser store 2020-12-17 11:25:29 -05:00
Sebastian Kaspari
d2b8decaeb Switch to new feature-tab-collections API. 2020-12-16 15:32:53 -05:00
ekager
30df43d057
For #13321 - Do not hide toolbar when opening multiple bookmarks (#17038) 2020-12-16 12:58:46 -05:00
mcarare
04bd9c61a6 For #16483: Rotate edit arrow when toolbar position is set to bottom. 2020-12-16 16:36:35 +02:00
mcarare
e24ec1c941 For #16068: Update SUMO links. 2020-12-16 14:03:36 +02:00
mcarare
e0c3193162 For #17061: Prevent appBarLayout from leaking. 2020-12-16 13:53:45 +02:00
Christian Sadilek
5157a3f50e Closes #17045: Crash caused by calling consumeFlow on wrong thread 2020-12-15 13:28:04 -05:00
ekager
419f895364 For #16973 - Use controller handled action instead of toolbar focus 2020-12-15 09:33:08 -08:00
Gabriel Luong
846d618c06
For #16941 - [Telemetry] Bookmark Counts (#16942) 2020-12-15 11:30:24 -05:00
Christian Sadilek
d8f3127e08 Closes #16946: Refactor PwaOnboardingObserver to use browser store 2020-12-15 10:15:54 -05:00
Sebastian Kaspari
46813dd89c
Add search current/home region to debug screen. (#17015) 2020-12-15 09:34:17 -05:00
Codrut Topliceanu
d0b09b7d69
For #15368 - Adds telemetry for fullscreen, pip (#16833) 2020-12-15 14:46:15 +02:00
mcarare
01db5160ee For #16827: Add copy url from long press metrics. 2020-12-15 12:14:27 +02:00
mcarare
93b13ac977 For #15369: Add synced tabs usage metrics. 2020-12-15 11:36:47 +02:00
mcarare
d233229ce4 For #15366: Add recently closed tabs metrics from history fragment. 2020-12-15 10:52:11 +02:00
mcarare
2f360eb474 For #15366: Add recently closed tabs metrics. 2020-12-15 10:52:11 +02:00
mcarare
a59195e2ee For #16422: Handle theme for tab history bottom sheet. 2020-12-15 10:44:41 +02:00
Mugurell
574eac4636
For #15367 - DownloadsFragment telemetry (#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
2020-12-15 09:14:20 +02:00
Mugurell
d5b33aec43
For #11578 - Add telemetry for how many times we download something (#16730) 2020-12-15 08:39:22 +02:00
Michael Debertol
95860eba49
For #4333: Open the keyboard when a search engine is selected (#14353)
Co-authored-by: Elise Richards <erichards@mozilla.com>
2020-12-14 12:53:59 +02:00
Arturo Mejia
f263b7333a For issue #16847 Show the autoplay icon in the toolbar 2020-12-13 19:03:01 -05:00
ekager
3b0e70a856 For #16937 - Ensure FIP is removed on navigation 2020-12-11 14:51:30 -08:00
Jeff Boek
cf61c10c39
For #15403 - Adds a secret debug info screen in settings (#15540)
Co-authored-by: Elise Richards <erichards@mozilla.com>
2020-12-11 16:13:37 -05:00
ekager
1ca34a2bc9 For #16807 - Make sure there's only one instance of search dialog 2020-12-11 11:47:30 -08:00
Elise Richards
813693f1d3
Remove hidden fab in tabs tray (#16972) 2020-12-11 11:01:04 -05:00
Codrut Topliceanu
556fea5591
For #15636 - Focus a11y collection on snackbar view tap (#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.
2020-12-11 14:32:37 +02:00
jhugman
9a984f10f1
Add withExperiment extension method to Nimbus (#16926) r=christian, sebastian
* Fixes #16925 Add withExperiment extension method to Nimbus
* Don't call Nimbus at all if not enabled by FeatureFlag
2020-12-10 17:34:31 +00:00
Roger Yang
ca605d8a95
Closes #16075: Add distribution_id in telemetry startup metrics (#16821) 2020-12-10 09:36:05 -05:00
Christian Sadilek
f0078097f8 Prepare for A-C Session[Manager] observable deprecation 2020-12-10 14:40:54 +01:00
ekager
dd2615b554
For #16442 - Check if fragment is still attached before updating site permissions rules (#16954) 2020-12-09 18:42:39 -05:00
jhugman
459f1e970f
Fixes #16948: call nimbus.updateExperiments on startup (#16950) r=gl 2020-12-09 20:18:48 +00:00
mcarare
a2ad9f7a27 For #16894: Handle adding voice search button depending on state. 2020-12-09 15:38:28 +02:00
mcarare
0a77f4bccf For #16775: Fallback to light mode drawable when ui mode is not resolved 2020-12-09 14:12:51 +02:00
mcarare
b4a81c2219 For #15640: Remove private resources from RadioButtonPreference. 2020-12-09 14:12:40 +02:00
mcarare
fa08afbc03 For #15640: Remove private resources from TextPercentageSeekBarPref. 2020-12-09 14:12:40 +02:00
ekager
2bb7bea258 For #16668 - Fix keyboard show/hide from search dialog fragment 2020-12-08 13:31:32 -08:00
Kate Glazko
ef01cdcefe For #16541: Download UX Updates 2020-12-08 11:35:23 -08:00