diff options
Diffstat (limited to 'net/base/load_flags.h')
-rw-r--r-- | net/base/load_flags.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/base/load_flags.h b/net/base/load_flags.h index 7e3642a..7175713 100644 --- a/net/base/load_flags.h +++ b/net/base/load_flags.h @@ -37,6 +37,9 @@ enum { // If present, upload progress messages should be provided to initiator. LOAD_ENABLE_UPLOAD_PROGRESS = 1 << 6, + // If present, try to download the resource to a standalone file. + LOAD_ENABLE_DOWNLOAD_FILE = 1 << 7, + // If present, ignores certificate mismatches with the domain name. // (The default behavior is to trigger an OnSSLCertificateError callback.) LOAD_IGNORE_CERT_COMMON_NAME_INVALID = 1 << 8, |