Skip to content

Commit

Permalink
Add HTML New Tab Page Privacy Config feature for macOS (#1152)
Browse files Browse the repository at this point in the history
Task/Issue URL: https://app.asana.com/0/0/1209105499479210/f

Description:
This change adds a new case to the PrivacyFeature enum.
  • Loading branch information
ayoy authored Jan 9, 2025
1 parent 14384f0 commit 4f591a8
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ public enum PrivacyFeature: String {
case adAttributionReporting
case experimentTest
case forceOldAppDelegate
case htmlNewTabPage
}

/// An abstraction to be implemented by any "subfeature" of a given `PrivacyConfiguration` feature.
Expand Down Expand Up @@ -195,3 +196,8 @@ public enum ExperimentTestSubfeatures: String, PrivacySubfeature {
public var parent: PrivacyFeature { .experimentTest }
case experimentTestAA
}

public enum HTMLNewTabPageSubfeature: String, Equatable, PrivacySubfeature {
public var parent: PrivacyFeature { .htmlNewTabPage }
case isLaunched
}

0 comments on commit 4f591a8

Please sign in to comment.