Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(359)

Unified Diff: third_party/WebKit/Source/core/frame/Deprecation.cpp

Issue 2533313002: CSP: Move 'worker-src' onto 'script-src' (Closed)
Patch Set: WPT. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/frame/Deprecation.cpp
diff --git a/third_party/WebKit/Source/core/frame/Deprecation.cpp b/third_party/WebKit/Source/core/frame/Deprecation.cpp
index 6fa6249400fec9c0ea96c506d0da999a5317c2ba..d7500bd727499fe05dfefc4c626af9da114e225a 100644
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp
@@ -429,6 +429,11 @@ String Deprecation::deprecationMessage(UseCounter::Feature feature) {
return willBeRemoved("indexedDB.webkitGetDatabaseNames()", M60,
"5725741740195840");
+ case UseCounter::ChildSrcAllowedWorkerThatScriptSrcBlocked:
+ return replacedWillBeRemoved("The 'child-src' directive",
+ "the 'script-src' directive for Workers",
+ M60, "5922594955984896");
foolip 2017/06/16 08:00:46 We're now at M61, can this be removed and merged b
+
// Features that aren't deprecated don't have a deprecation message.
default:
return String();

Powered by Google App Engine
This is Rietveld 408576698