68 lines
3.0 KiB
Diff
68 lines
3.0 KiB
Diff
From: Daniel Micay <danielmicay@gmail.com>
|
|
Date: Thu, 4 Jul 2019 19:08:52 -0400
|
|
Subject: Disable media router and remoting by default
|
|
|
|
Original License: MIT - https://spdx.org/licenses/MIT.html
|
|
License: GPL-3.0-only - https://spdx.org/licenses/GPL-3.0-only.html
|
|
---
|
|
chrome/browser/media/router/media_router_feature.cc | 5 +++--
|
|
chrome/browser/profiles/profile_impl.cc | 2 +-
|
|
.../blink/renderer/modules/remoteplayback/remote_playback.cc | 2 +-
|
|
3 files changed, 5 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/chrome/browser/media/router/media_router_feature.cc b/chrome/browser/media/router/media_router_feature.cc
|
|
--- a/chrome/browser/media/router/media_router_feature.cc
|
|
+++ b/chrome/browser/media/router/media_router_feature.cc
|
|
@@ -38,7 +38,7 @@
|
|
namespace media_router {
|
|
|
|
#if !BUILDFLAG(IS_ANDROID)
|
|
-BASE_FEATURE(kMediaRouter, "MediaRouter", base::FEATURE_ENABLED_BY_DEFAULT);
|
|
+BASE_FEATURE(kMediaRouter, "MediaRouter", base::FEATURE_DISABLED_BY_DEFAULT);
|
|
BASE_FEATURE(kCastAllowAllIPsFeature,
|
|
"CastAllowAllIPs",
|
|
base::FEATURE_DISABLED_BY_DEFAULT);
|
|
@@ -106,6 +106,7 @@ void ClearMediaRouterStoredPrefsForTesting() {
|
|
}
|
|
|
|
bool MediaRouterEnabled(content::BrowserContext* context) {
|
|
+ if ((true)) return false;
|
|
#if !BUILDFLAG(IS_ANDROID)
|
|
if (!base::FeatureList::IsEnabled(kMediaRouter))
|
|
return false;
|
|
@@ -147,7 +148,7 @@ void RegisterProfilePrefs(PrefRegistrySimple* registry) {
|
|
registry->RegisterStringPref(prefs::kMediaRouterReceiverIdHashToken, "",
|
|
PrefRegistry::PUBLIC);
|
|
registry->RegisterBooleanPref(
|
|
- media_router::prefs::kMediaRouterMediaRemotingEnabled, true);
|
|
+ media_router::prefs::kMediaRouterMediaRemotingEnabled, false); // disabled in Bromite
|
|
registry->RegisterBooleanPref(
|
|
media_router::prefs::kMediaRouterShowCastSessionsStartedByOtherDevices,
|
|
true);
|
|
diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc
|
|
--- a/chrome/browser/profiles/profile_impl.cc
|
|
+++ b/chrome/browser/profiles/profile_impl.cc
|
|
@@ -413,7 +413,7 @@ void ProfileImpl::RegisterProfilePrefs(
|
|
#endif
|
|
|
|
registry->RegisterBooleanPref(prefs::kForceEphemeralProfiles, false);
|
|
- registry->RegisterBooleanPref(prefs::kEnableMediaRouter, true);
|
|
+ registry->RegisterBooleanPref(prefs::kEnableMediaRouter, false);
|
|
#if !BUILDFLAG(IS_ANDROID)
|
|
registry->RegisterBooleanPref(prefs::kShowCastIconInToolbar, false);
|
|
#endif // !BUILDFLAG(IS_ANDROID)
|
|
diff --git a/third_party/blink/renderer/modules/remoteplayback/remote_playback.cc b/third_party/blink/renderer/modules/remoteplayback/remote_playback.cc
|
|
--- a/third_party/blink/renderer/modules/remoteplayback/remote_playback.cc
|
|
+++ b/third_party/blink/renderer/modules/remoteplayback/remote_playback.cc
|
|
@@ -101,7 +101,7 @@ KURL GetAvailabilityUrl(const WebURL& source,
|
|
}
|
|
|
|
bool IsBackgroundAvailabilityMonitoringDisabled() {
|
|
- return MemoryPressureListenerRegistry::IsLowEndDevice();
|
|
+ return true;
|
|
}
|
|
|
|
void RemotingStarting(HTMLMediaElement& media_element) {
|
|
--
|
|
2.25.1
|