Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Side by Side Diff: net/base/load_flags_list.h

Issue 1080673004: Remove network load flags not used in net/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comments incorporated. Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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).
11 11
12 LOAD_FLAG(NORMAL, 0) 12 LOAD_FLAG(NORMAL, 0)
13 13
14 // This is "normal reload", meaning an if-none-match/if-modified-since query 14 // This is "normal reload", meaning an if-none-match/if-modified-since query
15 LOAD_FLAG(VALIDATE_CACHE, 1 << 0) 15 LOAD_FLAG(VALIDATE_CACHE, 1 << 0)
16 16
17 // This is "shift-reload", meaning a "pragma: no-cache" end-to-end fetch 17 // This is "shift-reload", meaning a "pragma: no-cache" end-to-end fetch
18 LOAD_FLAG(BYPASS_CACHE, 1 << 1) 18 LOAD_FLAG(BYPASS_CACHE, 1 << 1)
19 19
20 // This is a back/forward style navigation where the cached content should 20 // This is a back/forward style navigation where the cached content should
21 // be preferred over any protocol specific cache validation. 21 // be preferred over any protocol specific cache validation.
22 LOAD_FLAG(PREFERRING_CACHE, 1 << 2) 22 LOAD_FLAG(PREFERRING_CACHE, 1 << 2)
23 23
24 // This is a navigation that will fail if it cannot serve the requested 24 // This is a navigation that will fail if it cannot serve the requested
25 // resource from the cache (or some equivalent local store). 25 // resource from the cache (or some equivalent local store).
26 LOAD_FLAG(ONLY_FROM_CACHE, 1 << 3) 26 LOAD_FLAG(ONLY_FROM_CACHE, 1 << 3)
27 27
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
30 // to as if LOAD_PREFERRING_CACHE had been set.
31 LOAD_FLAG(FROM_CACHE_IF_OFFLINE, 1 << 4)
32
33 // This is a navigation that will not use the cache at all. It does not 28 // This is a navigation that will not use the cache at all. It does not
34 // impact the HTTP request headers. 29 // impact the HTTP request headers.
35 LOAD_FLAG(DISABLE_CACHE, 1 << 5) 30 LOAD_FLAG(DISABLE_CACHE, 1 << 4)
36 31
37 // If present, causes certificate revocation checks to be skipped on secure 32 // If present, causes certificate revocation checks to be skipped on secure
38 // connections. 33 // connections.
39 LOAD_FLAG(DISABLE_CERT_REVOCATION_CHECKING, 1 << 6) 34 LOAD_FLAG(DISABLE_CERT_REVOCATION_CHECKING, 1 << 5)
40 35
41 // This load will not make any changes to cookies, including storing new 36 // This load will not make any changes to cookies, including storing new
42 // cookies or updating existing ones. 37 // cookies or updating existing ones.
43 LOAD_FLAG(DO_NOT_SAVE_COOKIES, 1 << 7) 38 LOAD_FLAG(DO_NOT_SAVE_COOKIES, 1 << 6)
44 39
45 // Do not resolve proxies. This override is used when downloading PAC files 40 // Do not resolve proxies. This override is used when downloading PAC files
46 // to avoid having a circular dependency. 41 // to avoid having a circular dependency.
47 LOAD_FLAG(BYPASS_PROXY, 1 << 8) 42 LOAD_FLAG(BYPASS_PROXY, 1 << 7)
48 43
49 // Requires EV certificate verification. 44 // Requires EV certificate verification.
50 LOAD_FLAG(VERIFY_EV_CERT, 1 << 9) 45 LOAD_FLAG(VERIFY_EV_CERT, 1 << 8)
51 46
52 // This load will not send any cookies. 47 // This load will not send any cookies.
53 LOAD_FLAG(DO_NOT_SEND_COOKIES, 1 << 10) 48 LOAD_FLAG(DO_NOT_SEND_COOKIES, 1 << 9)
54 49
55 // This load will not send authentication data (user name/password) 50 // This load will not send authentication data (user name/password)
56 // to the server (as opposed to the proxy). 51 // to the server (as opposed to the proxy).
57 LOAD_FLAG(DO_NOT_SEND_AUTH_DATA, 1 << 11) 52 LOAD_FLAG(DO_NOT_SEND_AUTH_DATA, 1 << 10)
58 53
59 // This should only be used for testing (set by HttpNetworkTransaction). 54 // This should only be used for testing (set by HttpNetworkTransaction).
60 LOAD_FLAG(IGNORE_ALL_CERT_ERRORS, 1 << 12) 55 LOAD_FLAG(IGNORE_ALL_CERT_ERRORS, 1 << 11)
61 56
62 // Indicate that this is a top level frame, so that we don't assume it is a 57 // Indicate that this is a top level frame, so that we don't assume it is a
63 // subresource and speculatively pre-connect or pre-resolve when a referring 58 // subresource and speculatively pre-connect or pre-resolve when a referring
64 // page is loaded. 59 // page is loaded.
65 LOAD_FLAG(MAIN_FRAME, 1 << 13) 60 LOAD_FLAG(MAIN_FRAME, 1 << 12)
66 61
67 // Indicate that this is a sub frame, and hence it might have subresources that 62 // Indicate that this is a sub frame, and hence it might have subresources that
68 // should be speculatively resolved, or even speculatively preconnected. 63 // should be speculatively resolved, or even speculatively preconnected.
69 LOAD_FLAG(SUB_FRAME, 1 << 14) 64 LOAD_FLAG(SUB_FRAME, 1 << 13)
70 65
71 // If present, intercept actual request/response headers from network stack 66 // If present, intercept actual request/response headers from network stack
72 // and report them to renderer. This includes cookies, so the flag is only 67 // and report them to renderer. This includes cookies, so the flag is only
73 // respected if renderer has CanReadRawCookies capability in the security 68 // respected if renderer has CanReadRawCookies capability in the security
74 // policy. 69 // policy.
75 LOAD_FLAG(REPORT_RAW_HEADERS, 1 << 15) 70 LOAD_FLAG(REPORT_RAW_HEADERS, 1 << 14)
76 71
77 // Indicates that this load was motivated by the rel=prefetch feature, 72 // Indicates that this load was motivated by the rel=prefetch feature,
78 // and is (in theory) not intended for the current frame. 73 // and is (in theory) not intended for the current frame.
79 LOAD_FLAG(PREFETCH, 1 << 16) 74 LOAD_FLAG(PREFETCH, 1 << 15)
80 75
81 // Indicates that this is a load that ignores limits and should complete 76 // Indicates that this is a load that ignores limits and should complete
82 // immediately. 77 // immediately.
83 LOAD_FLAG(IGNORE_LIMITS, 1 << 17) 78 LOAD_FLAG(IGNORE_LIMITS, 1 << 16)
84 79
85 // Indicates that the operation is somewhat likely to be due to an 80 // Indicates that the operation is somewhat likely to be due to an
86 // explicit user action. This can be used as a hint to treat the 81 // explicit user action. This can be used as a hint to treat the
87 // request with higher priority. 82 // request with higher priority.
88 LOAD_FLAG(MAYBE_USER_GESTURE, 1 << 18) 83 LOAD_FLAG(MAYBE_USER_GESTURE, 1 << 17)
89 84
90 // Indicates that the username:password portion of the URL should not 85 // Indicates that the username:password portion of the URL should not
91 // be honored, but that other forms of authority may be used. 86 // be honored, but that other forms of authority may be used.
92 LOAD_FLAG(DO_NOT_USE_EMBEDDED_IDENTITY, 1 << 19) 87 LOAD_FLAG(DO_NOT_USE_EMBEDDED_IDENTITY, 1 << 18)
93 88
94 // Send request directly to the origin if the effective proxy is the data 89 // Send request directly to the origin if the effective proxy is the data
95 // reduction proxy. 90 // reduction proxy.
96 // TODO(rcs): Remove this flag as soon as http://crbug.com/339237 is resolved. 91 // TODO(rcs): Remove this flag as soon as http://crbug.com/339237 is resolved.
97 LOAD_FLAG(BYPASS_DATA_REDUCTION_PROXY, 1 << 20) 92 LOAD_FLAG(BYPASS_DATA_REDUCTION_PROXY, 1 << 19)
98 93
99 // Indicates the the request is an asynchronous revalidation. 94 // Indicates the the request is an asynchronous revalidation.
100 LOAD_FLAG(ASYNC_REVALIDATION, 1 << 21) 95 LOAD_FLAG(ASYNC_REVALIDATION, 1 << 20)
OLDNEW
« no previous file with comments | « AUTHORS ('k') | net/http/http_cache_transaction.cc » ('j') | net/http/http_cache_transaction.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698