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

Unified Diff: third_party/WebKit/Source/web/WebSecurityPolicy.cpp

Issue 2623353002: Share schemes needed for mixed content checking between the browser and renderer. (Closed)
Patch Set: remove unused public methods Created 3 years, 11 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/web/WebSecurityPolicy.cpp
diff --git a/third_party/WebKit/Source/web/WebSecurityPolicy.cpp b/third_party/WebKit/Source/web/WebSecurityPolicy.cpp
index 7feaf720276bea789c87758fa91d78e165f8dafd..6662a55303de08414153b0350600a53d701ba930 100644
--- a/third_party/WebKit/Source/web/WebSecurityPolicy.cpp
+++ b/third_party/WebKit/Source/web/WebSecurityPolicy.cpp
@@ -40,28 +40,11 @@
namespace blink {
-void WebSecurityPolicy::registerURLSchemeAsLocal(const WebString& scheme) {
- SchemeRegistry::registerURLSchemeAsLocal(scheme);
-}
-
-void WebSecurityPolicy::registerURLSchemeAsNoAccess(const WebString& scheme) {
- SchemeRegistry::registerURLSchemeAsNoAccess(scheme);
-}
-
void WebSecurityPolicy::registerURLSchemeAsDisplayIsolated(
const WebString& scheme) {
SchemeRegistry::registerURLSchemeAsDisplayIsolated(scheme);
}
-void WebSecurityPolicy::registerURLSchemeAsSecure(const WebString& scheme) {
- SchemeRegistry::registerURLSchemeAsSecure(scheme);
-}
-
-void WebSecurityPolicy::registerURLSchemeAsCORSEnabled(
- const WebString& scheme) {
- SchemeRegistry::registerURLSchemeAsCORSEnabled(scheme);
-}
-
void WebSecurityPolicy::registerURLSchemeAsAllowingServiceWorkers(
const WebString& scheme) {
SchemeRegistry::registerURLSchemeAsAllowingServiceWorkers(scheme);
« no previous file with comments | « third_party/WebKit/Source/platform/weborigin/SchemeRegistry.cpp ('k') | third_party/WebKit/public/web/WebSecurityPolicy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698