1
0
Fork 0

For #1190: Removes syncing items from FxA telemetry

master
Sawyer Blatz 2019-06-05 12:46:22 -07:00 committed by Jeff Boek
parent e0fa11a276
commit 47c14b07dd
4 changed files with 0 additions and 25 deletions

View File

@ -371,18 +371,6 @@ metrics:
notification_emails:
- fenix-core@mozilla.com
expires: "2019-09-01"
syncing_items:
type: string_list
description: >
The preference keys for the switch preferences the user has enabled to sync with FxA. We currently track:
Bookmarks and History.
bugs:
- 1190
data_reviews:
- https://github.com/mozilla-mobile/fenix/pull/2745#issuecomment-494918532
notification_emails:
- fenix-core@mozilla.com
expires: "2020-03-01"
search.default_engine:
code:

View File

@ -30,9 +30,6 @@ import org.mozilla.fenix.GleanMetrics.Library
import org.mozilla.fenix.GleanMetrics.ErrorPage
import org.mozilla.fenix.GleanMetrics.SyncAccount
import org.mozilla.fenix.GleanMetrics.SyncAuth
import org.mozilla.fenix.R
import org.mozilla.fenix.ext.getPreferenceKey
import org.mozilla.fenix.utils.Settings
private class EventWrapper<T : Enum<T>>(
private val recorder: ((Map<T, String>?) -> Unit),
@ -251,11 +248,6 @@ class GleanMetricsService(private val context: Context) : MetricsService {
defaultBrowser.set(Browsers.all(context).isDefaultBrowser)
defaultMozBrowser.set(MozillaProductDetector.getMozillaBrowserDefault(context) ?: "")
mozillaProducts.set(MozillaProductDetector.getInstalledMozillaProducts(context))
val syncItemsKey = context.getPreferenceKey(R.string.pref_key_sync_syncing_items)
Settings.getInstance(context).preferences.getStringSet(syncItemsKey, setOf())?.toList()?.let {
syncingItems.set(it)
}
}
SearchDefaultEngine.apply {

View File

@ -30,7 +30,6 @@ import org.mozilla.fenix.R
import org.mozilla.fenix.components.metrics.Event
import org.mozilla.fenix.ext.getPreferenceKey
import org.mozilla.fenix.ext.requireComponents
import org.mozilla.fenix.utils.Settings
import java.lang.Exception
import kotlin.coroutines.CoroutineContext
@ -205,9 +204,6 @@ class AccountSettingsFragment : PreferenceFragmentCompat(), CoroutineScope {
}
}
}
Settings.getInstance(context!!).preferences.edit()
.putStringSet(context!!.getPreferenceKey(R.string.pref_key_sync_syncing_items), stringSet).apply()
}
fun updateLastSyncedTimePref(context: Context, pref: Preference, failed: Boolean = false) {

View File

@ -44,7 +44,6 @@
<string name="pref_key_sync_pair" translatable="false">pref_key_sync_pair</string>
<string name="pref_key_sync_sign_in" translatable="false">pref_key_sync_sign_in</string>
<string name="pref_key_sync_create_account" translatable="false">pref_key_sync_create_account</string>
<string name="pref_key_sync_syncing_items" translatable="false">pref_key_sync_syncing_items</string>
<string name="pref_key_sync_problem" translatable="false">pref_key_sync_problem</string>
<!-- Search Settings -->