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

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

Issue 1045593002: Remove LOAD_IS_DOWNLOAD network load flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge 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
« no previous file with comments | « content/browser/loader/resource_dispatcher_host_impl.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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).
(...skipping 28 matching lines...) Expand all
39 LOAD_FLAG(DISABLE_CERT_REVOCATION_CHECKING, 1 << 6) 39 LOAD_FLAG(DISABLE_CERT_REVOCATION_CHECKING, 1 << 6)
40 40
41 // 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
42 // cookies or updating existing ones. 42 // cookies or updating existing ones.
43 LOAD_FLAG(DO_NOT_SAVE_COOKIES, 1 << 7) 43 LOAD_FLAG(DO_NOT_SAVE_COOKIES, 1 << 7)
44 44
45 // 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
46 // to avoid having a circular dependency. 46 // to avoid having a circular dependency.
47 LOAD_FLAG(BYPASS_PROXY, 1 << 8) 47 LOAD_FLAG(BYPASS_PROXY, 1 << 8)
48 48
49 // Indicate this request is for a download, as opposed to viewing.
50 LOAD_FLAG(IS_DOWNLOAD, 1 << 9)
51
52 // Requires EV certificate verification. 49 // Requires EV certificate verification.
53 LOAD_FLAG(VERIFY_EV_CERT, 1 << 10) 50 LOAD_FLAG(VERIFY_EV_CERT, 1 << 9)
54 51
55 // This load will not send any cookies. 52 // This load will not send any cookies.
56 LOAD_FLAG(DO_NOT_SEND_COOKIES, 1 << 11) 53 LOAD_FLAG(DO_NOT_SEND_COOKIES, 1 << 10)
57 54
58 // This load will not send authentication data (user name/password) 55 // This load will not send authentication data (user name/password)
59 // to the server (as opposed to the proxy). 56 // to the server (as opposed to the proxy).
60 LOAD_FLAG(DO_NOT_SEND_AUTH_DATA, 1 << 12) 57 LOAD_FLAG(DO_NOT_SEND_AUTH_DATA, 1 << 11)
61 58
62 // This should only be used for testing (set by HttpNetworkTransaction). 59 // This should only be used for testing (set by HttpNetworkTransaction).
63 LOAD_FLAG(IGNORE_ALL_CERT_ERRORS, 1 << 13) 60 LOAD_FLAG(IGNORE_ALL_CERT_ERRORS, 1 << 12)
64 61
65 // Indicate that this is a top level frame, so that we don't assume it is a 62 // Indicate that this is a top level frame, so that we don't assume it is a
66 // subresource and speculatively pre-connect or pre-resolve when a referring 63 // subresource and speculatively pre-connect or pre-resolve when a referring
67 // page is loaded. 64 // page is loaded.
68 LOAD_FLAG(MAIN_FRAME, 1 << 14) 65 LOAD_FLAG(MAIN_FRAME, 1 << 13)
69 66
70 // Indicate that this is a sub frame, and hence it might have subresources that 67 // Indicate that this is a sub frame, and hence it might have subresources that
71 // should be speculatively resolved, or even speculatively preconnected. 68 // should be speculatively resolved, or even speculatively preconnected.
72 LOAD_FLAG(SUB_FRAME, 1 << 15) 69 LOAD_FLAG(SUB_FRAME, 1 << 14)
73 70
74 // If present, intercept actual request/response headers from network stack 71 // If present, intercept actual request/response headers from network stack
75 // and report them to renderer. This includes cookies, so the flag is only 72 // and report them to renderer. This includes cookies, so the flag is only
76 // respected if renderer has CanReadRawCookies capability in the security 73 // respected if renderer has CanReadRawCookies capability in the security
77 // policy. 74 // policy.
78 LOAD_FLAG(REPORT_RAW_HEADERS, 1 << 16) 75 LOAD_FLAG(REPORT_RAW_HEADERS, 1 << 15)
79 76
80 // Indicates that this load was motivated by the rel=prefetch feature, 77 // Indicates that this load was motivated by the rel=prefetch feature,
81 // and is (in theory) not intended for the current frame. 78 // and is (in theory) not intended for the current frame.
82 LOAD_FLAG(PREFETCH, 1 << 17) 79 LOAD_FLAG(PREFETCH, 1 << 16)
83 80
84 // Indicates that this is a load that ignores limits and should complete 81 // Indicates that this is a load that ignores limits and should complete
85 // immediately. 82 // immediately.
86 LOAD_FLAG(IGNORE_LIMITS, 1 << 18) 83 LOAD_FLAG(IGNORE_LIMITS, 1 << 17)
87 84
88 // Indicates that the operation is somewhat likely to be due to an 85 // Indicates that the operation is somewhat likely to be due to an
89 // explicit user action. This can be used as a hint to treat the 86 // explicit user action. This can be used as a hint to treat the
90 // request with higher priority. 87 // request with higher priority.
91 LOAD_FLAG(MAYBE_USER_GESTURE, 1 << 19) 88 LOAD_FLAG(MAYBE_USER_GESTURE, 1 << 18)
92 89
93 // Indicates that the username:password portion of the URL should not 90 // Indicates that the username:password portion of the URL should not
94 // be honored, but that other forms of authority may be used. 91 // be honored, but that other forms of authority may be used.
95 LOAD_FLAG(DO_NOT_USE_EMBEDDED_IDENTITY, 1 << 20) 92 LOAD_FLAG(DO_NOT_USE_EMBEDDED_IDENTITY, 1 << 19)
96 93
97 // Send request directly to the origin if the effective proxy is the data 94 // Send request directly to the origin if the effective proxy is the data
98 // reduction proxy. 95 // reduction proxy.
99 // TODO(rcs): Remove this flag as soon as http://crbug.com/339237 is resolved. 96 // TODO(rcs): Remove this flag as soon as http://crbug.com/339237 is resolved.
100 LOAD_FLAG(BYPASS_DATA_REDUCTION_PROXY, 1 << 21) 97 LOAD_FLAG(BYPASS_DATA_REDUCTION_PROXY, 1 << 20)
101 98
102 // Indicates the the request is an asynchronous revalidation. 99 // Indicates the the request is an asynchronous revalidation.
103 LOAD_FLAG(ASYNC_REVALIDATION, 1 << 22) 100 LOAD_FLAG(ASYNC_REVALIDATION, 1 << 21)
OLDNEW
« no previous file with comments | « content/browser/loader/resource_dispatcher_host_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698