54 lines
2.7 KiB
Diff
54 lines
2.7 KiB
Diff
From: csagan5 <32685696+csagan5@users.noreply.github.com>
|
|
Date: Tue, 25 May 2021 19:46:14 +0200
|
|
Subject: Add flag to disable external intent requests
|
|
|
|
---
|
|
chrome/browser/about_flags.cc | 3 +++
|
|
chrome/browser/flag_descriptions.cc | 6 ++++++
|
|
chrome/browser/flag_descriptions.h | 3 +++
|
|
3 files changed, 12 insertions(+)
|
|
|
|
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
|
|
--- a/chrome/browser/about_flags.cc
|
|
+++ b/chrome/browser/about_flags.cc
|
|
@@ -3012,6 +3012,9 @@ const FeatureEntry kFeatureEntries[] = {
|
|
flag_descriptions::kWebrtcCaptureMultiChannelApmName,
|
|
flag_descriptions::kWebrtcCaptureMultiChannelApmDescription, kOsAll,
|
|
FEATURE_VALUE_TYPE(features::kWebRtcEnableCaptureMultiChannelApm)},
|
|
+ {"disable-external-intent-requests", flag_descriptions::kDisableExternalIntentRequestsName,
|
|
+ flag_descriptions::kDisableExternalIntentRequestsDescription, kOsAll,
|
|
+ SINGLE_DISABLE_VALUE_TYPE("disable-external-intent-requests")},
|
|
{"disable-webrtc-hw-decoding", flag_descriptions::kWebrtcHwDecodingName,
|
|
flag_descriptions::kWebrtcHwDecodingDescription, kOsAndroid | kOsCrOS,
|
|
SINGLE_DISABLE_VALUE_TYPE(switches::kDisableWebRtcHWDecoding)},
|
|
diff --git a/chrome/browser/flag_descriptions.cc b/chrome/browser/flag_descriptions.cc
|
|
--- a/chrome/browser/flag_descriptions.cc
|
|
+++ b/chrome/browser/flag_descriptions.cc
|
|
@@ -3485,6 +3485,12 @@ const char kPhotoPickerVideoSupportName[] = "Photo Picker Video Support";
|
|
const char kPhotoPickerVideoSupportDescription[] =
|
|
"Enables video files to be shown in the Photo Picker dialog";
|
|
|
|
+const char kDisableExternalIntentRequestsName[] =
|
|
+ "Never forward URL requests to external intents";
|
|
+const char kDisableExternalIntentRequestsDescription[] =
|
|
+ "URL requests will never"
|
|
+ "allow for redirecting to an external intent.";
|
|
+
|
|
const char kQueryTilesName[] = "Show query tiles";
|
|
const char kQueryTilesDescription[] = "Shows query tiles in Chrome";
|
|
const char kQueryTilesNTPName[] = "Show query tiles in NTP";
|
|
diff --git a/chrome/browser/flag_descriptions.h b/chrome/browser/flag_descriptions.h
|
|
--- a/chrome/browser/flag_descriptions.h
|
|
+++ b/chrome/browser/flag_descriptions.h
|
|
@@ -2006,6 +2006,9 @@ extern const char kQueryTilesNTPDescription[];
|
|
extern const char kQueryTilesOmniboxName[];
|
|
extern const char kQueryTilesOmniboxDescription[];
|
|
extern const char kQueryTilesSingleTierName[];
|
|
+extern const char kDisableExternalIntentRequestsName[];
|
|
+extern const char kDisableExternalIntentRequestsDescription[];
|
|
+
|
|
extern const char kQueryTilesSingleTierDescription[];
|
|
extern const char kQueryTilesEnableQueryEditingName[];
|
|
extern const char kQueryTilesEnableQueryEditingDescription[];
|
|
--
|
|
2.25.1
|