Skip to content

Commit

Permalink
Update BSK with autofill 16.1.0 (#3674)
Browse files Browse the repository at this point in the history
  • Loading branch information
daxmobile authored Jan 8, 2025
1 parent b43124d commit 724a3bd
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion DuckDuckGo/DBP/DBPHomeViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ final class DBPHomeViewController: NSViewController {
passwordGeneration: false,
inlineIconCredentials: false,
thirdPartyCredentialsProvider: false,
unknownUsernameCategorization: false)
unknownUsernameCategorization: false,
partialFormSaves: false)

let isGPCEnabled = WebTrackingProtectionPreferences.shared.isGPCEnabled
let sessionKey = UUID().uuidString
Expand Down
3 changes: 2 additions & 1 deletion DuckDuckGo/Tab/Model/ContentScopeFeatureFlagging.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ extension ContentScopeFeatureToggles {
passwordGeneration: autofillPrefs.askToSaveUsernamesAndPasswords,
inlineIconCredentials: autofillPrefs.askToSaveUsernamesAndPasswords,
thirdPartyCredentialsProvider: true,
unknownUsernameCategorization: privacyConfig.isSubfeatureEnabled(AutofillSubfeature.unknownUsernameCategorization))
unknownUsernameCategorization: privacyConfig.isSubfeatureEnabled(AutofillSubfeature.unknownUsernameCategorization),
partialFormSaves: privacyConfig.isSubfeatureEnabled(AutofillSubfeature.partialFormSaves))
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,8 @@ final class DataBrokerRunCustomJSONViewModel: ObservableObject {
passwordGeneration: false,
inlineIconCredentials: false,
thirdPartyCredentialsProvider: false,
unknownUsernameCategorization: false)
unknownUsernameCategorization: false,
partialFormSaves: false)

let sessionKey = UUID().uuidString
let messageSecret = UUID().uuidString
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ public class DataBrokerProtectionAgentManagerProvider {
passwordGeneration: false,
inlineIconCredentials: false,
thirdPartyCredentialsProvider: false,
unknownUsernameCategorization: false)
unknownUsernameCategorization: false,
partialFormSaves: false)
let contentScopeProperties = ContentScopeProperties(gpcEnabled: false,
sessionKey: UUID().uuidString,
messageSecret: UUID().uuidString,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,8 @@ extension ContentScopeFeatureToggles {
passwordGeneration: false,
inlineIconCredentials: false,
thirdPartyCredentialsProvider: false,
unknownUsernameCategorization: false
unknownUsernameCategorization: false,
partialFormSaves: false
)
}
}
Expand Down

0 comments on commit 724a3bd

Please sign in to comment.