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

Side by Side Diff: content/common/resource_request.h

Issue 2484633004: Change Lo-Fi bool to bitmask to support multiple Previews types (Closed)
Patch Set: fix ContentResourceProviderTest Created 3 years, 11 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 #ifndef CONTENT_COMMON_RESOURCE_REQUEST_H_ 5 #ifndef CONTENT_COMMON_RESOURCE_REQUEST_H_
6 #define CONTENT_COMMON_RESOURCE_REQUEST_H_ 6 #define CONTENT_COMMON_RESOURCE_REQUEST_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 #include <string> 9 #include <string>
10 10
11 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
12 #include "base/optional.h" 12 #include "base/optional.h"
13 #include "content/common/content_export.h" 13 #include "content/common/content_export.h"
14 #include "content/common/navigation_params.h" 14 #include "content/common/navigation_params.h"
15 #include "content/common/resource_request_body_impl.h" 15 #include "content/common/resource_request_body_impl.h"
16 #include "content/common/service_worker/service_worker_types.h" 16 #include "content/common/service_worker/service_worker_types.h"
17 #include "content/public/common/appcache_info.h" 17 #include "content/public/common/appcache_info.h"
18 #include "content/public/common/previews_state.h"
18 #include "content/public/common/request_context_frame_type.h" 19 #include "content/public/common/request_context_frame_type.h"
19 #include "content/public/common/request_context_type.h" 20 #include "content/public/common/request_context_type.h"
20 #include "content/public/common/resource_type.h" 21 #include "content/public/common/resource_type.h"
21 #include "net/base/request_priority.h" 22 #include "net/base/request_priority.h"
22 #include "third_party/WebKit/public/platform/WebPageVisibilityState.h" 23 #include "third_party/WebKit/public/platform/WebPageVisibilityState.h"
23 #include "third_party/WebKit/public/platform/WebReferrerPolicy.h" 24 #include "third_party/WebKit/public/platform/WebReferrerPolicy.h"
24 #include "ui/base/page_transition_types.h" 25 #include "ui/base/page_transition_types.h"
25 #include "url/gurl.h" 26 #include "url/gurl.h"
26 #include "url/origin.h" 27 #include "url/origin.h"
27 28
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 // Unless this refers to a transferred navigation, these values are -1 and -1. 168 // Unless this refers to a transferred navigation, these values are -1 and -1.
168 int transferred_request_child_id = -1; 169 int transferred_request_child_id = -1;
169 int transferred_request_request_id = -1; 170 int transferred_request_request_id = -1;
170 171
171 // Whether or not we should allow the URL to download. 172 // Whether or not we should allow the URL to download.
172 bool allow_download = false; 173 bool allow_download = false;
173 174
174 // Whether to intercept headers to pass back to the renderer. 175 // Whether to intercept headers to pass back to the renderer.
175 bool report_raw_headers = false; 176 bool report_raw_headers = false;
176 177
177 // Whether or not to request a LoFi version of the resource or let the browser 178 // Whether or not to request a Preview version of the resource or let the
178 // decide. 179 // browser decide.
179 LoFiState lofi_state = LOFI_UNSPECIFIED; 180 PreviewsState previews_state = PREVIEWS_UNSPECIFIED;
180 181
181 // PlzNavigate: the stream url associated with a navigation. Used to get 182 // PlzNavigate: the stream url associated with a navigation. Used to get
182 // access to the body of the response that has already been fetched by the 183 // access to the body of the response that has already been fetched by the
183 // browser. 184 // browser.
184 GURL resource_body_stream_url; 185 GURL resource_body_stream_url;
185 186
186 // Wether or not the initiator of this request is a secure context. 187 // Wether or not the initiator of this request is a secure context.
187 bool initiated_in_secure_context = false; 188 bool initiated_in_secure_context = false;
188 189
189 // The response should be downloaded and stored in the network cache, but not 190 // The response should be downloaded and stored in the network cache, but not
190 // sent back to the renderer. 191 // sent back to the renderer.
191 bool download_to_network_cache_only = false; 192 bool download_to_network_cache_only = false;
192 }; 193 };
193 194
194 } // namespace content 195 } // namespace content
195 196
196 #endif // CONTENT_COMMON_RESOURCE_REQUEST_H_ 197 #endif // CONTENT_COMMON_RESOURCE_REQUEST_H_
OLDNEW
« no previous file with comments | « content/common/resource_messages.h ('k') | content/public/browser/resource_dispatcher_host_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698