@@ -54,13 +54,12 @@ index 8fc176cfd3a0411521c0f5e4f60b70ca333f60c8..e43f09d80bc9472a027bb11325803aab
54
54
- DCHECK(resource_url.SchemeIsHTTPOrHTTPS() ||
55
55
- resource_url_is_chrome_or_chrome_untrusted ||
56
56
- blink::CommonSchemeRegistry::IsExtensionScheme(resource_url.scheme()));
57
- -
57
+
58
58
- // |origin_lock| should be either empty or should have
59
59
- // Http/Https/chrome/chrome-untrusted schemes and it should not be a URL with
60
60
- // opaque origin. Empty origin_locks are allowed when the renderer is not
61
61
- // locked to an origin.
62
62
- bool origin_lock_is_chrome_or_chrome_untrusted =
63
- +
64
63
+ const bool resource_url_embedder =
65
64
+ base::Contains(url::GetCodeCacheSchemes(), resource_url.scheme());
66
65
+ DCHECK(resource_url_http || resource_url_webui || resource_url_embedder);
@@ -81,16 +80,15 @@ index 8fc176cfd3a0411521c0f5e4f60b70ca333f60c8..e43f09d80bc9472a027bb11325803aab
81
80
- origin_lock_is_chrome_or_chrome_untrusted ||
82
81
- blink::CommonSchemeRegistry::IsExtensionScheme(origin_lock.scheme())) &&
83
82
- !url::Origin::Create(origin_lock).opaque()));
84
- -
83
+ + const bool origin_lock_for_embedder =
84
+ + base::Contains(url::GetCodeCacheSchemes(), origin_lock.scheme());
85
+
85
86
- // The chrome and chrome-untrusted schemes are only used with the WebUI
86
87
- // code cache type.
87
88
- DCHECK_EQ(origin_lock_is_chrome_or_chrome_untrusted,
88
89
- cache_type == GeneratedCodeCache::kWebUIJavaScript);
89
90
- DCHECK_EQ(resource_url_is_chrome_or_chrome_untrusted,
90
91
- cache_type == GeneratedCodeCache::kWebUIJavaScript);
91
- + const bool origin_lock_for_embedder =
92
- + base::Contains(url::GetCodeCacheSchemes(), origin_lock.scheme());
93
- +
94
92
+ DCHECK(origin_lock_empty || ((origin_lock_for_http || origin_lock_for_webui ||
95
93
+ origin_lock_for_embedder) &&
96
94
+ !url::Origin::Create(origin_lock).opaque()));
@@ -407,11 +405,11 @@ index 9dc2d5a33858da7c31fd87bbbabe3899301fa52d..ebf0bb23b9aedb7bf9eb8af52b4756db
407
405
std::vector<std::string> extension_schemes;
408
406
// Registers a URL scheme with a predefined default custom handler.
409
407
diff --git a/url/url_util.cc b/url/url_util.cc
410
- index fd6de92945bf1a98700fdf5fc83872180b628b62..f98ed81866daf40943d83fdab4c0d95d617885b8 100644
408
+ index 3191f87472acd7b2356f59b132803befa2561cdf..638ce775ecfbef3a3bb20a5224711f37903266a4 100644
411
409
--- a/url/url_util.cc
412
410
+++ b/url/url_util.cc
413
- @@ -116 ,6 +116 ,9 @@ struct SchemeRegistry {
414
- kAboutScheme ,
411
+ @@ -123 ,6 +123 ,9 @@ struct SchemeRegistry {
412
+ kAndroidScheme ,
415
413
};
416
414
417
415
+ // Embedder schemes that have V8 code cache enabled in js and wasm scripts.
@@ -420,7 +418,7 @@ index fd6de92945bf1a98700fdf5fc83872180b628b62..f98ed81866daf40943d83fdab4c0d95d
420
418
// Schemes with a predefined default custom handler.
421
419
std::vector<SchemeWithHandler> predefined_handler_schemes;
422
420
423
- @@ -683 ,6 +686 ,15 @@ const std::vector<std::string>& GetEmptyDocumentSchemes() {
421
+ @@ -704 ,6 +707 ,15 @@ const std::vector<std::string>& GetEmptyDocumentSchemes() {
424
422
return GetSchemeRegistry().empty_document_schemes;
425
423
}
426
424
0 commit comments