Skip to content

Commit

Permalink
Add constant for the Cross-Origin-Opener-Policy header.
Browse files Browse the repository at this point in the history
[]

RELNOTES=Adds constant for the Cross-Origin-Opener-Policy header.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=272415924
  • Loading branch information
ralucaradu authored and cpovirk committed Oct 2, 2019
1 parent 2220eb2 commit 4ef2111
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions android/guava/src/com/google/common/net/HttpHeaders.java
Expand Up @@ -266,6 +266,12 @@ private ReferrerPolicyValues() {}
* @since 20.0
*/
public static final String X_WEBKIT_CSP_REPORT_ONLY = "X-WebKit-CSP-Report-Only";
/**
* The HTTP Cross-Origin-Opener-Policy header field name.
*
* @since NEXT
*/
public static final String CROSS_ORIGIN_OPENER_POLICY = "Cross-Origin-Opener-Policy";
/** The HTTP {@code ETag} header field name. */
public static final String ETAG = "ETag";
/** The HTTP {@code Expires} header field name. */
Expand Down
6 changes: 6 additions & 0 deletions guava/src/com/google/common/net/HttpHeaders.java
Expand Up @@ -266,6 +266,12 @@ private ReferrerPolicyValues() {}
* @since 20.0
*/
public static final String X_WEBKIT_CSP_REPORT_ONLY = "X-WebKit-CSP-Report-Only";
/**
* The HTTP Cross-Origin-Opener-Policy header field name.
*
* @since NEXT
*/
public static final String CROSS_ORIGIN_OPENER_POLICY = "Cross-Origin-Opener-Policy";
/** The HTTP {@code ETag} header field name. */
public static final String ETAG = "ETag";
/** The HTTP {@code Expires} header field name. */
Expand Down

0 comments on commit 4ef2111

Please sign in to comment.