[AUTO][FILECONTROL] - version 126.0.6478.40

This commit is contained in:
uazo
2024-06-09 02:44:14 +00:00
committed by GitHub
parent a3eff5cd04
commit cb54cf960c
115 changed files with 3418 additions and 1958 deletions
@@ -266,7 +266,7 @@ AwContentBrowserClient::~AwContentBrowserClient() {}
void AwContentBrowserClient::OnNetworkServiceCreated(
network::mojom::NetworkService* network_service) {
// TODO(https://crbug.com/1085233): If CertVerifierServiceFactory is moved to
// TODO(crbug.com/40693524): If CertVerifierServiceFactory is moved to
// a separate process, this will likely need to be set somewhere else instead
// of here.
content::GetCertVerifierServiceFactory()->SetUseChromeRootStore(
@@ -429,7 +429,7 @@ AwContentBrowserClient::GetGeneratedCodeCacheSettings(
// cache for the code cache entry to be used. There are two code caches that
// both use this value, so we pass 10MB to keep the total disk usage to
// roughly 2x what it was before the code cache was implemented.
// TODO(crbug/893318): webview should have smarter cache sizing logic.
// TODO(crbug.com/41419561): webview should have smarter cache sizing logic.
AwBrowserContext* browser_context = static_cast<AwBrowserContext*>(context);
return content::GeneratedCodeCacheSettings(
true, 10 * 1024 * 1024, browser_context->GetHttpCachePath());
@@ -678,7 +678,7 @@ AwContentBrowserClient::CreateURLLoaderThrottles(
},
base::Unretained(this)),
wc_getter, frame_tree_node_id, navigation_id,
// TODO(crbug.com/1033760): rt_lookup_service is
// TODO(crbug.com/40663467): rt_lookup_service is
// used to perform real time URL check, which is gated by UKM opted-in.
// Since AW currently doesn't support UKM, this feature is not enabled.
/* rt_lookup_service */ nullptr,
@@ -738,7 +738,7 @@ AwContentBrowserClient::CreateURLLoaderThrottlesForKeepAlive(
},
base::Unretained(this)),
wc_getter, frame_tree_node_id, /*navigation_id=*/std::nullopt,
// TODO(crbug.com/1033760): rt_lookup_service is
// TODO(crbug.com/40663467): rt_lookup_service is
// used to perform real time URL check, which is gated by UKM opted-in.
// Since AW currently doesn't support UKM, this feature is not enabled.
/* rt_lookup_service */ nullptr,
@@ -950,7 +950,7 @@ void AwContentBrowserClient::RegisterNonNetworkSubresourceURLLoaderFactories(
}
bool AwContentBrowserClient::ShouldAllowNoLongerUsedProcessToExit() {
// TODO(crbug.com/1268454): Add Android WebView support for allowing a
// TODO(crbug.com/40803531): Add Android WebView support for allowing a
// renderer process to exit when only non-live RenderFrameHosts remain,
// without consulting the app's OnRenderProcessGone crash handlers.
return false;
@@ -969,7 +969,7 @@ bool AwContentBrowserClient::ShouldEnableStrictSiteIsolation() {
}
size_t AwContentBrowserClient::GetMaxRendererProcessCountOverride() {
// TODO(crbug.com/806404): These options can currently can only be turned by
// TODO(crbug.com/40560171): These options can currently can only be turned by
// by manually overriding command line switches because
// `ShouldDisableSiteIsolation` returns true. Should coordinate if/when
// enabling this in production.