| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // This is the list of load flags and their values. For the enum values, | 5 // This is the list of load flags and their values. For the enum values, |
| 6 // include the file "net/base/load_flags.h". | 6 // include the file "net/base/load_flags.h". |
| 7 // | 7 // |
| 8 // Here we define the values using a macro LOAD_FLAG, so it can be | 8 // Here we define the values using a macro LOAD_FLAG, so it can be |
| 9 // expanded differently in some places (for example, to automatically | 9 // expanded differently in some places (for example, to automatically |
| 10 // map a load flag value to its symbolic name). | 10 // map a load flag value to its symbolic name). |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 // Indicate that if the request fails at the network level in a way that | 28 // Indicate that if the request fails at the network level in a way that |
| 29 // indicates the source is unreachable, the request should fail over | 29 // indicates the source is unreachable, the request should fail over |
| 30 // to as if LOAD_PREFERRING_CACHE had been set. | 30 // to as if LOAD_PREFERRING_CACHE had been set. |
| 31 LOAD_FLAG(FROM_CACHE_IF_OFFLINE, 1 << 4) | 31 LOAD_FLAG(FROM_CACHE_IF_OFFLINE, 1 << 4) |
| 32 | 32 |
| 33 // This is a navigation that will not use the cache at all. It does not | 33 // This is a navigation that will not use the cache at all. It does not |
| 34 // impact the HTTP request headers. | 34 // impact the HTTP request headers. |
| 35 LOAD_FLAG(DISABLE_CACHE, 1 << 5) | 35 LOAD_FLAG(DISABLE_CACHE, 1 << 5) |
| 36 | 36 |
| 37 // If present, ignores certificate mismatches with the domain name. | |
| 38 // (The default behavior is to trigger an OnSSLCertificateError callback.) | |
| 39 LOAD_FLAG(IGNORE_CERT_COMMON_NAME_INVALID, 1 << 6) | |
| 40 | |
| 41 // If present, ignores certificate expiration dates | |
| 42 // (The default behavior is to trigger an OnSSLCertificateError callback). | |
| 43 LOAD_FLAG(IGNORE_CERT_DATE_INVALID, 1 << 7) | |
| 44 | |
| 45 // If present, trusts all certificate authorities | |
| 46 // (The default behavior is to trigger an OnSSLCertificateError callback). | |
| 47 LOAD_FLAG(IGNORE_CERT_AUTHORITY_INVALID, 1 << 8) | |
| 48 | |
| 49 // If present, causes certificate revocation checks to be skipped on secure | 37 // If present, causes certificate revocation checks to be skipped on secure |
| 50 // connections. | 38 // connections. |
| 51 LOAD_FLAG(DISABLE_CERT_REVOCATION_CHECKING, 1 << 9) | 39 LOAD_FLAG(DISABLE_CERT_REVOCATION_CHECKING, 1 << 6) |
| 52 | |
| 53 // If present, ignores wrong key usage of the certificate | |
| 54 // (The default behavior is to trigger an OnSSLCertificateError callback). | |
| 55 LOAD_FLAG(IGNORE_CERT_WRONG_USAGE, 1 << 10) | |
| 56 | 40 |
| 57 // This load will not make any changes to cookies, including storing new | 41 // This load will not make any changes to cookies, including storing new |
| 58 // cookies or updating existing ones. | 42 // cookies or updating existing ones. |
| 59 LOAD_FLAG(DO_NOT_SAVE_COOKIES, 1 << 11) | 43 LOAD_FLAG(DO_NOT_SAVE_COOKIES, 1 << 7) |
| 60 | 44 |
| 61 // Do not resolve proxies. This override is used when downloading PAC files | 45 // Do not resolve proxies. This override is used when downloading PAC files |
| 62 // to avoid having a circular dependency. | 46 // to avoid having a circular dependency. |
| 63 LOAD_FLAG(BYPASS_PROXY, 1 << 12) | 47 LOAD_FLAG(BYPASS_PROXY, 1 << 8) |
| 64 | 48 |
| 65 // Indicate this request is for a download, as opposed to viewing. | 49 // Indicate this request is for a download, as opposed to viewing. |
| 66 LOAD_FLAG(IS_DOWNLOAD, 1 << 13) | 50 LOAD_FLAG(IS_DOWNLOAD, 1 << 9) |
| 67 | 51 |
| 68 // Requires EV certificate verification. | 52 // Requires EV certificate verification. |
| 69 LOAD_FLAG(VERIFY_EV_CERT, 1 << 14) | 53 LOAD_FLAG(VERIFY_EV_CERT, 1 << 10) |
| 70 | 54 |
| 71 // This load will not send any cookies. | 55 // This load will not send any cookies. |
| 72 LOAD_FLAG(DO_NOT_SEND_COOKIES, 1 << 15) | 56 LOAD_FLAG(DO_NOT_SEND_COOKIES, 1 << 11) |
| 73 | 57 |
| 74 // This load will not send authentication data (user name/password) | 58 // This load will not send authentication data (user name/password) |
| 75 // to the server (as opposed to the proxy). | 59 // to the server (as opposed to the proxy). |
| 76 LOAD_FLAG(DO_NOT_SEND_AUTH_DATA, 1 << 16) | 60 LOAD_FLAG(DO_NOT_SEND_AUTH_DATA, 1 << 12) |
| 77 | 61 |
| 78 // This should only be used for testing (set by HttpNetworkTransaction). | 62 // This should only be used for testing (set by HttpNetworkTransaction). |
| 79 LOAD_FLAG(IGNORE_ALL_CERT_ERRORS, 1 << 17) | 63 LOAD_FLAG(IGNORE_ALL_CERT_ERRORS, 1 << 13) |
| 80 | 64 |
| 81 // Indicate that this is a top level frame, so that we don't assume it is a | 65 // Indicate that this is a top level frame, so that we don't assume it is a |
| 82 // subresource and speculatively pre-connect or pre-resolve when a referring | 66 // subresource and speculatively pre-connect or pre-resolve when a referring |
| 83 // page is loaded. | 67 // page is loaded. |
| 84 LOAD_FLAG(MAIN_FRAME, 1 << 18) | 68 LOAD_FLAG(MAIN_FRAME, 1 << 14) |
| 85 | 69 |
| 86 // Indicate that this is a sub frame, and hence it might have subresources that | 70 // Indicate that this is a sub frame, and hence it might have subresources that |
| 87 // should be speculatively resolved, or even speculatively preconnected. | 71 // should be speculatively resolved, or even speculatively preconnected. |
| 88 LOAD_FLAG(SUB_FRAME, 1 << 19) | 72 LOAD_FLAG(SUB_FRAME, 1 << 15) |
| 89 | 73 |
| 90 // If present, intercept actual request/response headers from network stack | 74 // If present, intercept actual request/response headers from network stack |
| 91 // and report them to renderer. This includes cookies, so the flag is only | 75 // and report them to renderer. This includes cookies, so the flag is only |
| 92 // respected if renderer has CanReadRawCookies capability in the security | 76 // respected if renderer has CanReadRawCookies capability in the security |
| 93 // policy. | 77 // policy. |
| 94 LOAD_FLAG(REPORT_RAW_HEADERS, 1 << 20) | 78 LOAD_FLAG(REPORT_RAW_HEADERS, 1 << 16) |
| 95 | 79 |
| 96 // Indicates that this load was motivated by the rel=prefetch feature, | 80 // Indicates that this load was motivated by the rel=prefetch feature, |
| 97 // and is (in theory) not intended for the current frame. | 81 // and is (in theory) not intended for the current frame. |
| 98 LOAD_FLAG(PREFETCH, 1 << 21) | 82 LOAD_FLAG(PREFETCH, 1 << 17) |
| 99 | 83 |
| 100 // Indicates that this is a load that ignores limits and should complete | 84 // Indicates that this is a load that ignores limits and should complete |
| 101 // immediately. | 85 // immediately. |
| 102 LOAD_FLAG(IGNORE_LIMITS, 1 << 22) | 86 LOAD_FLAG(IGNORE_LIMITS, 1 << 18) |
| 103 | 87 |
| 104 // Indicates that the operation is somewhat likely to be due to an | 88 // Indicates that the operation is somewhat likely to be due to an |
| 105 // explicit user action. This can be used as a hint to treat the | 89 // explicit user action. This can be used as a hint to treat the |
| 106 // request with higher priority. | 90 // request with higher priority. |
| 107 LOAD_FLAG(MAYBE_USER_GESTURE, 1 << 23) | 91 LOAD_FLAG(MAYBE_USER_GESTURE, 1 << 19) |
| 108 | 92 |
| 109 // Indicates that the username:password portion of the URL should not | 93 // Indicates that the username:password portion of the URL should not |
| 110 // be honored, but that other forms of authority may be used. | 94 // be honored, but that other forms of authority may be used. |
| 111 LOAD_FLAG(DO_NOT_USE_EMBEDDED_IDENTITY, 1 << 24) | 95 LOAD_FLAG(DO_NOT_USE_EMBEDDED_IDENTITY, 1 << 20) |
| 112 | 96 |
| 113 // Send request directly to the origin if the effective proxy is the data | 97 // Send request directly to the origin if the effective proxy is the data |
| 114 // reduction proxy. | 98 // reduction proxy. |
| 115 // TODO(rcs): Remove this flag as soon as http://crbug.com/339237 is resolved. | 99 // TODO(rcs): Remove this flag as soon as http://crbug.com/339237 is resolved. |
| 116 LOAD_FLAG(BYPASS_DATA_REDUCTION_PROXY, 1 << 25) | 100 LOAD_FLAG(BYPASS_DATA_REDUCTION_PROXY, 1 << 21) |
| 117 | 101 |
| 118 // Indicates the the request is an asynchronous revalidation. | 102 // Indicates the the request is an asynchronous revalidation. |
| 119 LOAD_FLAG(ASYNC_REVALIDATION, 1 << 26) | 103 LOAD_FLAG(ASYNC_REVALIDATION, 1 << 22) |
| OLD | NEW |