From be7f066d6fa37da16fe4e877bc094c3dd0eacfec Mon Sep 17 00:00:00 2001 From: John Harrington <84741727+harr1424@users.noreply.github.com> Date: Mon, 15 Dec 2025 14:11:45 -0700 Subject: [PATCH] safe changes related to review feedback (checkpoint) --- .../chromium_importer/src/chromium/platform/sandbox.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/apps/desktop/desktop_native/chromium_importer/src/chromium/platform/sandbox.rs b/apps/desktop/desktop_native/chromium_importer/src/chromium/platform/sandbox.rs index 3a48cd86afe..ef5884cf4f5 100644 --- a/apps/desktop/desktop_native/chromium_importer/src/chromium/platform/sandbox.rs +++ b/apps/desktop/desktop_native/chromium_importer/src/chromium/platform/sandbox.rs @@ -1,11 +1,9 @@ -// -// Sandbox specific (for Mac App Store Builds) -// +/// Sandbox specific (for Mac App Store Builds) use anyhow::{anyhow, Result}; use serde::{Deserialize, Serialize}; -// Before requesting access outside of sandbox, determine if browser is actually installed +// Bundle IDs of supported Chromium browsers - used to determine if browser is installed const BROWSER_BUNDLE_IDS: &[(&str, &str)] = &[ ("Chrome", "com.google.Chrome"), ("Chromium", "org.chromium.Chromium"),