diff options
Diffstat (limited to 'net/base/load_flags.h')
-rw-r--r-- | net/base/load_flags.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/base/load_flags.h b/net/base/load_flags.h index 5df2d69..7ca5ffb 100644 --- a/net/base/load_flags.h +++ b/net/base/load_flags.h @@ -56,6 +56,10 @@ enum { // If present, ignores wrong key usage of the certificate // (The default behavior is to trigger an OnSSLCertificateError callback). LOAD_IGNORE_CERT_WRONG_USAGE = 1 << 12, + + // This load will not make any changes to cookies, including storing new + // cookies or updating existing ones. + LOAD_DO_NOT_SAVE_COOKIES = 1 << 13, }; } // namespace net |