| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 14 matching lines...) Expand all Loading... |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 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 | 31 |
| 32 #ifndef ReferrerPolicy_h | 32 #ifndef ReferrerPolicy_h |
| 33 #define ReferrerPolicy_h | 33 #define ReferrerPolicy_h |
| 34 | 34 |
| 35 #include "wtf/text/WTFString.h" |
| 36 |
| 35 namespace blink { | 37 namespace blink { |
| 36 | 38 |
| 37 enum ReferrerPolicy { | 39 enum ReferrerPolicy { |
| 38 // https://w3c.github.io/webappsec/specs/referrer-policy/#referrer-policy-st
ate-unsafe-url | 40 // https://w3c.github.io/webappsec/specs/referrer-policy/#referrer-policy-st
ate-unsafe-url |
| 39 ReferrerPolicyAlways, | 41 ReferrerPolicyAlways, |
| 40 // The default policy, if no policy is explicitly set by the page. | 42 // The default policy, if no policy is explicitly set by the page. |
| 41 ReferrerPolicyDefault, | 43 ReferrerPolicyDefault, |
| 42 // https://w3c.github.io/webappsec/specs/referrer-policy/#referrer-policy-st
ate-no-referrer-when-downgrade | 44 // https://w3c.github.io/webappsec/specs/referrer-policy/#referrer-policy-st
ate-no-referrer-when-downgrade |
| 43 ReferrerPolicyNoReferrerWhenDowngrade, | 45 ReferrerPolicyNoReferrerWhenDowngrade, |
| 44 // https://w3c.github.io/webappsec/specs/referrer-policy/#referrer-policy-st
ate-no-referrer | 46 // https://w3c.github.io/webappsec/specs/referrer-policy/#referrer-policy-st
ate-no-referrer |
| 45 ReferrerPolicyNever, | 47 ReferrerPolicyNever, |
| 46 // https://w3c.github.io/webappsec/specs/referrer-policy/#referrer-policy-st
ate-origin | 48 // https://w3c.github.io/webappsec/specs/referrer-policy/#referrer-policy-st
ate-origin |
| 47 ReferrerPolicyOrigin, | 49 ReferrerPolicyOrigin, |
| 48 // https://w3c.github.io/webappsec/specs/referrer-policy/#referrer-policy-st
ate-origin-when-cross-origin | 50 // https://w3c.github.io/webappsec/specs/referrer-policy/#referrer-policy-st
ate-origin-when-cross-origin |
| 49 ReferrerPolicyOriginWhenCrossOrigin, | 51 ReferrerPolicyOriginWhenCrossOrigin |
| 50 }; | 52 }; |
| 51 | 53 |
| 54 bool ParseReferrerPolicy(const WTF::String&, ReferrerPolicy*); |
| 55 |
| 56 WTF::String ReferrerPolicyToString(ReferrerPolicy); |
| 57 |
| 52 } | 58 } |
| 53 | 59 |
| 54 #endif // ReferrerPolicy_h | 60 #endif // ReferrerPolicy_h |
| OLD | NEW |