| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
base::test::ScopedOSInfoOverride os_override(
base::test::ScopedOSInfoOverride::Type::kWin11Pro);I wonder should Win11 Pro be supported for the feature?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
base::test::ScopedOSInfoOverride os_override(
base::test::ScopedOSInfoOverride::Type::kWin11Pro);I wonder should Win11 Pro be supported for the feature?
Yes. But this test verifies the kWinSystemLocationPermission disabled state.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
CreateGeolocationSystemPermissionManager());it seems cleaner to me if we put this OS check inside `CreateGeolocationSystemPermissionManager()` so that consumers of `GeolocationSystemPermissionManager` don't need their own branching at each point of use. can we have a `SystemGeolocationSource` implementation for the "OS support is missing" case that returns the proper things when it is called?
@alv...@chromium.org: `kWinSystemLocationPermission` launched long ago. can we remove it from the codebase? if so, i think that makes the case of putting this new conditional within `geolocation` even more appealing.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
chrome/browser/permissions/system/system_permission_settings_win.cc LGTM
it seems cleaner to me if we put this OS check inside `CreateGeolocationSystemPermissionManager()` so that consumers of `GeolocationSystemPermissionManager` don't need their own branching at each point of use. can we have a `SystemGeolocationSource` implementation for the "OS support is missing" case that returns the proper things when it is called?
@alv...@chromium.org: `kWinSystemLocationPermission` launched long ago. can we remove it from the codebase? if so, i think that makes the case of putting this new conditional within `geolocation` even more appealing.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |