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

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

Issue 2775763002: Block 'ftp:' subresource requests from non-'ftp:' pages. (Closed)
Patch Set: Rebaseline. 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 97a2585a221f482beace77d9bd4637ae8df5898a..068e5302b53cff9ce45ed0fae2223e734255b6da 100644
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp
@@ -270,11 +270,9 @@ String Deprecation::deprecationMessage(UseCounter::Feature feature) {
case UseCounter::LegacyProtocolEmbeddedAsSubresource:
return String::format(
"Subresource requests using legacy protocols (like `ftp:`) are "
- "deprecated, and will be blocked in %s. Please deliver "
- "web-accessible resources over modern protocols like HTTPS. "
- "See https://www.chromestatus.com/feature/5709390967472128 for more "
- "details.",
- milestoneString(M59));
+ "are blocked. Please deliver web-accessible resources over modern "
+ "protocols like HTTPS. See "
+ "https://www.chromestatus.com/feature/5709390967472128 for details.");
case UseCounter::RequestedSubresourceWithEmbeddedCredentials:
return String::format(

Powered by Google App Engine
This is Rietveld 408576698