Commit Graph

5906 Commits

Author SHA1 Message Date
Gabriel Luong
9bd6d298f1 For #21078 - Remove unused creditCardsFeature feature flag 2021-08-31 20:10:53 +00:00
Elise Richards
13fd0699cb Include data review for renewed metrics 2021-08-31 18:28:05 +00:00
Elise Richards
6cb872cd98 Remove banner open in app telemetry 2021-08-31 18:28:05 +00:00
Elise Richards
c9626019ef Remove search suggestions in private telemetry 2021-08-31 18:28:05 +00:00
Elise Richards
19d8f58b47 Remove user specified search engine telemetry 2021-08-31 18:28:05 +00:00
Elise Richards
7653691d30 Remove private browsing shortcut telemetry 2021-08-31 18:28:05 +00:00
Elise Richards
34fb522f1a Fix data-review listed for default_browser_changed, toolbar_menu_visible, and toolbar_menu_clicked 2021-08-31 18:28:05 +00:00
Elise Richards
cb9bbd2650 Remove private browsing mode telemetry 2021-08-31 18:28:05 +00:00
Elise Richards
d137becd48 Remove tip telemetry 2021-08-31 18:28:05 +00:00
Elise Richards
fa811cb244 Remove enable private search suggestions telemetry 2021-08-31 18:28:05 +00:00
Elise Richards
de992994de Remove open links in private tab telemetry 2021-08-31 18:28:05 +00:00
Elise Richards
f1cf6f4651 Remove find in page telemetry 2021-08-31 18:28:05 +00:00
Elise Richards
1f94dfa59b Remove total uri count telemetry 2021-08-31 18:28:05 +00:00
Elise Richards
87530ab9a4 Remove about page telemetry 2021-08-31 18:28:05 +00:00
Elise Richards
1b066458d5 Remove downloads management telemetry 2021-08-31 18:28:05 +00:00
Elise Richards
8455886ca8 Remove downloads misc telemetry. 2021-08-31 18:28:05 +00:00
Elise Richards
c4ec8aa520 Remove download notification telemetry. 2021-08-31 18:28:05 +00:00
Elise Richards
2392c7e565 Remove master password telemetry. 2021-08-31 18:28:05 +00:00
Elise Richards
0f246bd16d Renew probes set to expire in September 2021-08-31 18:28:05 +00:00
Elise Richards
7c5155568e Renew probes set to expire in October 2021-08-31 18:28:05 +00:00
Gabriel Luong
4080eba225 For #21037 - Add a delete history menu item
This removes the existing "Delete history" button in the History in favour of a menu item
2021-08-31 18:02:09 +00:00
Arturo Mejia
6034adcbc8 Add tint to settings icon on Tracking protection panel 2021-08-31 02:14:24 +00:00
Mozilla L10n Automation Bot
7bd1530d8a Import l10n. 2021-08-31 01:38:53 +00:00
AndiAJ
dd889d8c0d For #21002 update and add missing tabs setting validations 2021-08-31 01:09:16 +00:00
Oana Horvath
fe8f4be9b9 For #20702: fix tests flakiness 2021-08-30 20:33:03 +00:00
Sebastian Kaspari
846274b7cd Enable Android Autofill support in all build types. 2021-08-30 18:20:22 +00:00
Mozilla L10n Automation Bot
91819626b4 Import l10n. 2021-08-30 00:32:56 +00:00
Mozilla L10n Automation Bot
19992707c7 Import l10n. 2021-08-29 00:39:20 +00:00
Gabriel Luong
e4a25f4123 For #21035 - Refactor HistoryViewInteractor from HistoryView into HistoryInteractor 2021-08-26 21:04:49 +00:00
Oana Horvath
a7c45425d7 For #21002: added page main menu items tests 2021-08-26 08:21:10 +00:00
Christian Sadilek
597b73c732 Dedupe history metadata in groups based on url 2021-08-25 20:19:50 +00:00
Elise Richards
014abc8143
Update search metric expiration dates (#21016) 2021-08-25 14:43:17 -04:00
Arturo Mejia
37c26976ac For #20919 add confirm dialog when turning on/off experiments 2021-08-24 23:47:14 +00:00
Arturo Mejia
ce0fc5b1af For #20871 mark strings for removal 2021-08-24 23:15:06 +00:00
Elise Richards
41825022e7
For #19931: Add telemetry probes for recent bookmarks on home screen (#20316)
* Add telemetry probes for recent bookmarks on home screen. Tests for controller.

* Make the events into counters in the metrics ping

Update tests to reflect new metrics

Add data review link for new metrics

Mock new settings for startup metrics tests

Update metrics

Add test for recent bookmark glean events

* Recent bookmarks controller tests
2021-08-24 12:30:13 -07:00
Mugurell
09e8d34c26 For #20507 - Inactive tabs telemetry
Two new events are added:
- "inactive_tabs_expanded" for when the inactive tabs section is expanded
- "inactive_tabs_collapsed" for when the inactive tabs section is collapsed

For tracking when an inactive tab is opened / closed I've repurposed the
existing tabs tray telemetry (since the functionality uses the same code)
- tabs_tray.opened_existing_tab
- tabs_tray.closed_existing_tab
to support an extra "source" key indicating the feature from which a tab was
opened or closed. The current values for this new key are:
- "Tabs tray" for when a tab was opened/closed from tabs tray
- "Inactive tabs" for when a tab was openes/closed from the Inactive tabs
section of the tabs tray.
2021-08-24 12:10:58 +00:00
Mugurell
0fa9363f99 For #17917 - Remove the Kotlin synthetics Lint detector
Since all usages of Kotlin synthetics are removed and no such code is generated
anymore there is no need to keep around this Detector anymore.
2021-08-24 10:26:36 +00:00
Mugurell
cb32b1437e For #17917 - Remove the kotlin-android-extensions plugin
This means no code will be generated by Kotlin Android Extensions for caching
views and also for @Parcelize annotated classes.

As recommended in the official documentation
https://developer.android.com/topic/libraries/view-binding/migration#gradle
we need to switch on using `kotlinx.parcelize.Parcelize` instead of
`import kotlinx.android.parcel.Parcelize`

For #17917 - Remove the `kotlin-android-extensions` plugin

This means no code will be generated by Kotlin Android Extensions for caching
views and also for @Parcelize annotated classes.

As recommended in the official documentation
https://developer.android.com/topic/libraries/view-binding/migration#gradle
we need to switch on using `kotlinx.parcelize.Parcelize` instead of
`import kotlinx.android.parcel.Parcelize`
2021-08-24 10:26:36 +00:00
Mugurell
621c388c12 For #17917 - Finish migrating all synthetics usages 2021-08-24 10:26:36 +00:00
codrut.topliceanu
5e13ead750 For #20328 - Adds telemetry for recentlyClosed button
...from tabsTray, inactiveTabs section.
2021-08-24 09:52:33 +00:00
Oana Horvath
84767f84ea For #20716: re-enables mainMenuInstallPWATest UI test 2021-08-24 08:25:34 +00:00
Oana Horvath
9920cbeb1d For #20868, #18764: Update Tracking Protection UI tests 2021-08-24 08:25:34 +00:00
Grisha Kruglov
6161dc6e8d Closes 20975: Run metadata cleanup after Megazord.init()
This ensures that we do not attempt places initialization before
Megazord.init() finishes, and that touching BrowserStore does not
kick-off places initialization (due to the `cleanup` call being a
side-effect of creating metadata middleware, used as part of the
BrowserStore).

Glean initialization happens before initialize megazord, and it touches
core.store BrowserStore instance, kicking-off places initialization on
an IO thread (due to the cleanup call), which raced megazord
initialization on the main thread.

App init sequence is a bit of a mine-field, so this patch takes the easy
way out and doesn't attempt to re-order initialization sequence. Also,
initializing places as a side-effect of touching BrowserStore was also,
clearly, a bug.
2021-08-23 22:29:46 +00:00
codrut.topliceanu
7070bb5607 For #17917: Use View binding in add-ons 2021-08-23 15:49:22 +00:00
Mugurell
05f74eb620 For #20586 - Put everything behing a secret setting
Not ready for prime-time. Lot of work still to be done.
2021-08-23 14:38:06 +00:00
Mugurell
6ae8c90f41 For #20586 - Basic Jetpack Compose implementation.
This is just the basic skeleton for the feature.
2021-08-23 14:38:06 +00:00
Arturo Mejia
4f163e18e7 For #20892 update connection icons in quick settings 2021-08-23 13:35:45 +00:00
mcarare
83b752afef For #20927: Replace icons with AC icons. 2021-08-23 08:16:55 +00:00
rxu
f88be38796 Use armeabi-v7a version code for MozillaOnline builds 2021-08-23 05:51:00 +00:00
Arturo Mejia
ffad73d646 For #20919 quite the app when turning on/off experiments 2021-08-23 03:39:55 +00:00