diff options
Diffstat (limited to 'net/base')
-rw-r--r-- | net/base/load_flags.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/net/base/load_flags.h b/net/base/load_flags.h index 2c007a6..49c6daf 100644 --- a/net/base/load_flags.h +++ b/net/base/load_flags.h @@ -70,6 +70,13 @@ enum { // Requires EV certificate verification. LOAD_VERIFY_EV_CERT = 1 << 16, + + // This load will not send any cookies. + LOAD_DO_NOT_SEND_COOKIES = 1 << 17, + + // This load will not send authentication data (user name/password) + // to the server (as opposed to the proxy). + LOAD_DO_NOT_SEND_AUTH_DATA = 1 << 18, }; } // namespace net |