-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Conversation
c69b7fd
to
6834b64
Compare
Request for data collection review formAll questions are mandatory. You must receive review from a data steward peer on your responses to these questions before shipping new data collection.
Until 04/01/2020
|
@@ -108,13 +116,6 @@ class EditBookmarkFragment : Fragment(), CoroutineScope { | |||
updateBookmarkFromObservableInput() | |||
} | |||
|
|||
override fun onPause() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I moved the code to move bookmarks, as I noticed a occasional race condition by backgrounding it during onPause. If needed, I can separate this fix from the Telemetry PR.
@@ -84,6 +84,17 @@ class BookmarkFragment : Fragment(), CoroutineScope, BackHandler, AccountObserve | |||
super.onResume() | |||
(activity as AppCompatActivity).supportActionBar?.show() | |||
checkIfSignedIn() | |||
|
|||
val currentGuid = BookmarkFragmentArgs.fromBundle(arguments!!).currentRoot.ifEmpty { BookmarkRoot.Root.id } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now rechecking bookmarks during every onResume in case they changed on disk.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Really close! This is a good reminder for me to document all the telemetry information.
app/src/main/java/org/mozilla/fenix/library/bookmarks/BookmarkFragment.kt
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Data Review Form (to be filled by Data Stewards)
-
Is there or will there be documentation that describes the schema for the ultimate data set available publicly, complete and accurate?
Yes, metrics.yaml -
Is there a control mechanism that allows the user to turn the data collection on and off?
Yes through the Fenix data controls -
If the request is for permanent data collection, is there someone who will monitor the data over time?**
Has expiry, fenix-core@ will monitor -
Using the category system of data types on the Mozilla wiki, what collection type of data do the requested measurements fall under? **
Type 2 -
Is the data collection request for default-on or default-off?
Default on -
Does the instrumentation include the addition of any new identifiers (whether anonymous or otherwise; e.g., username, random IDs, etc. See the appendix for more details)?
No -
Is the data collection covered by the existing Firefox privacy notice?
Yes -
Does there need to be a check-in in the future to determine whether to renew the data? (Yes/No) (If yes, set a todo reminder or file a bug if appropriate)**
Has expiry -
Does the data collection use a third-party collection tool?
No
Code looks good too |
Pull Request checklist