| 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);
|
|
|