24 lines
821 B
Diff
24 lines
821 B
Diff
From: uazo <uazo@users.noreply.github.com>
|
|
Date: Sat, 3 Jun 2023 13:11:22 +0000
|
|
Subject: Disallowing MIDI permission by default
|
|
|
|
License: GPL-2.0-or-later - https://spdx.org/licenses/GPL-2.0-or-later.html
|
|
---
|
|
components/permissions/features.cc | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/components/permissions/features.cc b/components/permissions/features.cc
|
|
--- a/components/permissions/features.cc
|
|
+++ b/components/permissions/features.cc
|
|
@@ -169,7 +169,7 @@ BASE_FEATURE(kWindowPlacementPermissionAlias,
|
|
// Enables disallowing MIDI permission by default.
|
|
BASE_FEATURE(kBlockMidiByDefault,
|
|
"BlockMidiByDefault",
|
|
- base::FEATURE_DISABLED_BY_DEFAULT);
|
|
+ base::FEATURE_ENABLED_BY_DEFAULT);
|
|
|
|
} // namespace features
|
|
namespace feature_params {
|
|
--
|
|
2.25.1
|