2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-03 23:15:31 +00:00
This commit is contained in:
Sawyer Blatz 2019-06-11 10:30:25 -07:00 committed by Colin Lee
parent 4b86f769f5
commit 83134baf48
2 changed files with 2 additions and 5 deletions

View File

@ -141,9 +141,8 @@ events:
A user toggled a preference switch in settings
extra_keys:
preference_key:
description: "The preference key for the switch preference the user toggled. We currently track: leakcanary,
make_default_browser, show_search_suggestions, show_visited_sites_bookmarks, remote_debugging, telemetry,
tracking_protection"
description: "The preference key for the switch preference the user toggled. We currently track:
show_search_suggestions, show_visited_sites_bookmarks, remote_debugging, telemetry, tracking_protection"
enabled:
description: "Whether or not the preference is *now* enabled"
bugs:

View File

@ -94,8 +94,6 @@ sealed class Event {
data class PreferenceToggled(val preferenceKey: String, val enabled: Boolean, val context: Context) : Event() {
private val switchPreferenceTelemetryAllowList = listOf(
context.getString(R.string.pref_key_leakcanary),
context.getString(R.string.pref_key_make_default_browser),
context.getString(R.string.pref_key_show_search_suggestions),
context.getString(R.string.pref_key_show_visited_sites_bookmarks),
context.getString(R.string.pref_key_remote_debugging),