forked from qodo-benchmark/firefox-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
Add FXIOS-14493 #31366 [Onboarding] No telemetry recorded when the user taps the "go to settings" button #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
tomerqodo
wants to merge
23
commits into
cursor_only-issues-20260113-cursor_completion_base_add_fxios-14493__31366_onboarding_no_telemetry_recorded_when_the_user_taps_the_go_to_settings_button_pr24
Choose a base branch
from
cursor_only-issues-20260113-cursor_completion_head_add_fxios-14493__31366_onboarding_no_telemetry_recorded_when_the_user_taps_the_go_to_settings_button_pr24
base: cursor_only-issues-20260113-cursor_completion_base_add_fxios-14493__31366_onboarding_no_telemetry_recorded_when_the_user_taps_the_go_to_settings_button_pr24
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
75d90c3
Refactor TOS feature flag setup into helper method
razvanlitianu d61bcfc
Fix default browser onboarding telemetry recording
razvanlitianu d2fae19
Record dismiss_pressed when default browser popup is dismissed
razvanlitianu cdbf039
Revert changes to LaunchScreenViewModelTests.swift
razvanlitianu fa068e1
Add issue #31366 and PR #31375 links to onboarding metrics
razvanlitianu 74d8a41
Add issue #31366 to data_reviews for go_to_settings_pressed metric
razvanlitianu 639217e
Add telemetry recording for OnboardingInstructionPopupViewController
razvanlitianu 715d1a3
Remove unused hasDefaultBrowserCard function
razvanlitianu 5dad279
Add telemetry recording for OnboardingInstructionPopupViewController
razvanlitianu 78e5801
Remove dismiss_pressed check and hasDefaultBrowserCard function
razvanlitianu f43eedb
Remove dismiss_pressed check and hasDefaultBrowserCard function
razvanlitianu 6b30929
Keep only latest links in go_to_settings_pressed and dismiss_pressed …
razvanlitianu bcfc498
Restore TelemetryWrapper usage in DefaultBrowserOnboardingViewController
razvanlitianu e1ef36d
Fix SwiftLint: align TelemetryWrapper.recordEvent parameters vertically
razvanlitianu 158a59b
Make telemetry utility non-optional in OnboardingService and add unit…
razvanlitianu 6d1768d
Revert formatting changes and preserve original line positions
razvanlitianu 6657271
Restore multi-line format for goToSettingsDefaultBrowserOnboarding te…
razvanlitianu 2bb1b0a
Fix memory leak in LaunchCoordinator by making qrCodeNavigationHandle…
razvanlitianu 69b5f05
Restore previously deleted bugs and data_reviews links in onboarding …
razvanlitianu a31aa67
Merge remote-tracking branch 'origin/main' into rlitianu/fix-default-…
razvanlitianu 70c9525
Remove unused default_browser_card dismiss_pressed and go_to_settings…
razvanlitianu 7df9f89
Update default browser onboarding telemetry to use event metrics with…
razvanlitianu 57c6363
Apply changes for benchmark PR
tomerqodo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Missing dismiss telemetry in OnboardingService popup
Medium Severity
The
createDefaultBrowserPopupViewControllermethod inOnboardingServicedoes not set thebottomSheetVC.onDismisscallback to record dismiss telemetry. In contrast,OnboardingCardDelegate.presentDefaultBrowserPopupproperly setsbottomSheetVC.onDismissto callsendDismissButtonTappedTelemetry(). This means dismiss button taps in the modern onboarding flow (which usesOnboardingService) won't be recorded, defeating part of the PR's purpose to add telemetry for dismiss actions.