-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into afarcasanu/fxios_10655_23315_common_name_und…
…erlined # Conflicts: # firefox-ios/Client/Frontend/TrackingProtection/CertificatesHelpers/CertificatesCell.swift
- Loading branch information
Showing
25 changed files
with
273 additions
and
37 deletions.
There are no files selected for viewing
This file contains 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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,7 +72,7 @@ jobs: | |
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | ||
committer: GitHub <[email protected]> | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
commit-message: ${{ env.pr_title }} | ||
commit-message: "Refactor [v${{ env.next_version }}] Update effective_tld_names file ${{ env.current_date }}" | ||
title: "Refactor [v${{ env.next_version }}] Update effective_tld_names file ${{ env.current_date }}" | ||
branch: ${{ env.branch_name }} | ||
body: ${{ env.pr_body }} |
This file contains 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 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 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 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 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 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
38 changes: 38 additions & 0 deletions
38
firefox-ios/Client/Frontend/Onboarding/Models/TermsOfServiceTelemetry.swift
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// This Source Code Form is subject to the terms of the Mozilla Public | ||
// License, v. 2.0. If a copy of the MPL was not distributed with this | ||
// file, You can obtain one at http://mozilla.org/MPL/2.0/ | ||
|
||
import Foundation | ||
import Glean | ||
|
||
struct TermsOfServiceTelemetry { | ||
func termsOfServiceScreenDisplayed() { | ||
GleanMetrics.Onboarding.termsOfServiceCard.record() | ||
} | ||
|
||
func technicalInteractionDataSwitched(to value: Bool) { | ||
let extra = GleanMetrics.Onboarding.ToggleTechnicalInteractionDataExtra(changedTo: value) | ||
GleanMetrics.Onboarding.toggleTechnicalInteractionData.record(extra) | ||
} | ||
|
||
func automaticCrashReportsSwitched(to value: Bool) { | ||
let extra = GleanMetrics.Onboarding.ToggleAutomaticCrashReportsExtra(changedTo: value) | ||
GleanMetrics.Onboarding.toggleAutomaticCrashReports.record(extra) | ||
} | ||
|
||
func termsOfServiceLinkTapped() { | ||
GleanMetrics.Onboarding.termsOfServiceLinkClicked.record() | ||
} | ||
|
||
func termsOfServicePrivacyNoticeLinkTapped() { | ||
GleanMetrics.Onboarding.termsOfServicePrivacyNoticeLinkClicked.record() | ||
} | ||
|
||
func termsOfServiceManageLinkTapped() { | ||
GleanMetrics.Onboarding.termsOfServiceManageLinkClicked.record() | ||
} | ||
|
||
func termsOfServiceAcceptButtonTapped() { | ||
GleanMetrics.Onboarding.termsOfServiceAccepted.record() | ||
} | ||
} |
This file contains 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 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 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 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 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 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 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.