Chromium Code Reviews| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 94 // be honored, but that other forms of authority may be used. | 94 // be honored, but that other forms of authority may be used. |
| 95 LOAD_FLAG(DO_NOT_USE_EMBEDDED_IDENTITY, 1 << 20) | 95 LOAD_FLAG(DO_NOT_USE_EMBEDDED_IDENTITY, 1 << 20) |
| 96 | 96 |
| 97 // 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 |
| 98 // reduction proxy. | 98 // reduction proxy. |
| 99 // 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. |
| 100 LOAD_FLAG(BYPASS_DATA_REDUCTION_PROXY, 1 << 21) | 100 LOAD_FLAG(BYPASS_DATA_REDUCTION_PROXY, 1 << 21) |
| 101 | 101 |
| 102 // Indicates the the request is an asynchronous revalidation. | 102 // Indicates the the request is an asynchronous revalidation. |
| 103 LOAD_FLAG(ASYNC_REVALIDATION, 1 << 22) | 103 LOAD_FLAG(ASYNC_REVALIDATION, 1 << 22) |
| 104 | |
| 105 // Indicates that the request should only use HTTP 1s. | |
|
sclittle
2015/03/04 21:35:23
Did you mean "HTTP/1.1"?
tbansal1
2015/03/06 19:57:40
Done.
| |
| 106 LOAD_FLAG(UNENCRYPTED_HTTP11, 1 << 23) | |
| OLD | NEW |