| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef WebSecurityPolicy_h | 31 #ifndef WebSecurityPolicy_h |
| 32 #define WebSecurityPolicy_h | 32 #define WebSecurityPolicy_h |
| 33 | 33 |
| 34 #include "../platform/WebCommon.h" | 34 #include "../platform/WebCommon.h" |
| 35 #include "../platform/WebReferrerPolicy.h" | 35 #include "../platform/WebReferrerPolicy.h" |
| 36 | 36 |
| 37 namespace WebKit { | 37 namespace blink { |
| 38 | 38 |
| 39 class WebString; | 39 class WebString; |
| 40 class WebURL; | 40 class WebURL; |
| 41 | 41 |
| 42 class WebSecurityPolicy { | 42 class WebSecurityPolicy { |
| 43 public: | 43 public: |
| 44 // Registers a URL scheme to be treated as a local scheme (i.e., with the | 44 // Registers a URL scheme to be treated as a local scheme (i.e., with the |
| 45 // same security rules as those applied to "file" URLs). This means that | 45 // same security rules as those applied to "file" URLs). This means that |
| 46 // normal pages cannot link to or access URLs of this scheme. | 46 // normal pages cannot link to or access URLs of this scheme. |
| 47 BLINK_EXPORT static void registerURLSchemeAsLocal(const WebString&); | 47 BLINK_EXPORT static void registerURLSchemeAsLocal(const WebString&); |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 BLINK_EXPORT static WebString generateReferrerHeader(WebReferrerPolicy, cons
t WebURL&, const WebString& referrer); | 86 BLINK_EXPORT static WebString generateReferrerHeader(WebReferrerPolicy, cons
t WebURL&, const WebString& referrer); |
| 87 | 87 |
| 88 // Registers an URL scheme to not allow manipulation of the loaded page | 88 // Registers an URL scheme to not allow manipulation of the loaded page |
| 89 // by bookmarklets or javascript: URLs typed in the omnibox. | 89 // by bookmarklets or javascript: URLs typed in the omnibox. |
| 90 BLINK_EXPORT static void registerURLSchemeAsNotAllowingJavascriptURLs(const
WebString&); | 90 BLINK_EXPORT static void registerURLSchemeAsNotAllowingJavascriptURLs(const
WebString&); |
| 91 | 91 |
| 92 private: | 92 private: |
| 93 WebSecurityPolicy(); | 93 WebSecurityPolicy(); |
| 94 }; | 94 }; |
| 95 | 95 |
| 96 } // namespace WebKit | 96 } // namespace blink |
| 97 | 97 |
| 98 #endif | 98 #endif |
| OLD | NEW |