File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
services/network/public/cpp Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -240,10 +240,9 @@ bool AwMainDelegate::BasicStartupComplete(int* exit_code) {
240
240
// De-jelly is never supported on WebView.
241
241
features.EnableIfNotSet (::features::kDisableDeJelly );
242
242
243
- // COOP/COEP is not supported on WebView. See:
243
+ // COOP is not supported on WebView yet . See:
244
244
// https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/XBKAGb2_7uAi.
245
245
features.DisableIfNotSet (network::features::kCrossOriginOpenerPolicy );
246
- features.DisableIfNotSet (network::features::kCrossOriginEmbedderPolicy );
247
246
248
247
features.DisableIfNotSet (::features::kInstalledApp );
249
248
Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ const base::Feature kProactivelyThrottleLowPriorityRequests{
70
70
71
71
// Enables Cross-Origin Opener Policy (COOP).
72
72
// https://gist.github.com/annevk/6f2dd8c79c77123f39797f6bdac43f3e
73
+ // https://html.spec.whatwg.org/#cross-origin-opener-policy
73
74
// Currently this feature is enabled for all platforms except WebView.
74
75
const base::Feature kCrossOriginOpenerPolicy {" CrossOriginOpenerPolicy" ,
75
76
base::FEATURE_ENABLED_BY_DEFAULT};
@@ -96,8 +97,10 @@ const base::Feature kCrossOriginOpenerPolicyByDefault{
96
97
" CrossOriginOpenerPolicyByDefault" , base::FEATURE_DISABLED_BY_DEFAULT};
97
98
98
99
// Enables Cross-Origin Embedder Policy (COEP).
99
- // https://github.com/mikewest/corpp
100
- // Currently this feature is enabled for all platforms except WebView.
100
+ // https://html.spec.whatwg.org/#coep
101
+ // Currently this feature is enabled for all platforms (including webview).
102
+ // TODO(https://crbug.com/1140432): Remove this flag after M88 Stable + 1 week =
103
+ // 2021-02-01.
101
104
const base::Feature kCrossOriginEmbedderPolicy {
102
105
" CrossOriginEmbedderPolicy" , base::FEATURE_ENABLED_BY_DEFAULT};
103
106
You can’t perform that action at this time.
0 commit comments