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

Unified Diff: Source/platform/weborigin/SecurityOrigin.cpp

Issue 1060723002: Replace secure origin warning shortlink with an HTTPS shortlink to an HTTPS URL. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Change link format as discussed. Created 5 years, 8 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: Source/platform/weborigin/SecurityOrigin.cpp
diff --git a/Source/platform/weborigin/SecurityOrigin.cpp b/Source/platform/weborigin/SecurityOrigin.cpp
index 492485d917b8787398c5eea2c0ab093407d1f806..505a66bc8aba626cf616f21ed967895965a83a85 100644
--- a/Source/platform/weborigin/SecurityOrigin.cpp
+++ b/Source/platform/weborigin/SecurityOrigin.cpp
@@ -382,7 +382,7 @@ bool SecurityOrigin::canAccessFeatureRequiringSecureOrigin(String& errorMessage)
if (SchemeRegistry::shouldTreatURLSchemeAsSecure(m_protocol) || isLocal() || isLocalhost())
return true;
- errorMessage = "Only secure origins are allowed. http://goo.gl/lq4gCo";
+ errorMessage = "Only secure origins are allowed (see: https://goo.gl/Y0ZkNV).";
return false;
}
« no previous file with comments | « Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp ('k') | Source/platform/weborigin/SecurityOriginTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698