Update to Chromium version 120.0.6099.0 (#1217362)

- chrome: Disable upgrade/downgrade behavior (see #3608)
- chrome: Disable process singleton behavior (see #3609)
- chrome: Disable config as default system browser (see #3613)
This commit is contained in:
Marshall Greenblatt
2023-11-21 14:17:55 -05:00
parent 738192addf
commit f781ea373f
84 changed files with 828 additions and 569 deletions

View File

@@ -128,6 +128,7 @@ class CefPermissionPrompt : public permissions::PermissionPrompt {
absl::optional<gfx::Rect> GetViewBoundsInScreen() const override {
return absl::nullopt;
}
bool ShouldFinalizeRequestAfterDecided() const override { return true; }
private:
// We don't expose AcceptThisTime() because it's a special case for
@@ -224,6 +225,8 @@ cef_permission_request_types_t GetCefRequestType(
return CEF_PERMISSION_TYPE_VR_SESSION;
case permissions::RequestType::kWindowManagement:
return CEF_PERMISSION_TYPE_WINDOW_MANAGEMENT;
case permissions::RequestType::kFileSystemAccess:
return CEF_PERMISSION_TYPE_FILE_SYSTEM_ACCESS;
}
DCHECK(false);