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

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

Issue 2262183002: [NoStatePrefetch] Do not send responses to renderer in prefetch mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@prefetchProto
Patch Set: Cleanup Created 4 years, 3 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
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 // decide. 166 // decide.
167 LoFiState lofi_state = LOFI_UNSPECIFIED; 167 LoFiState lofi_state = LOFI_UNSPECIFIED;
168 168
169 // PlzNavigate: the stream url associated with a navigation. Used to get 169 // PlzNavigate: the stream url associated with a navigation. Used to get
170 // access to the body of the response that has already been fetched by the 170 // access to the body of the response that has already been fetched by the
171 // browser. 171 // browser.
172 GURL resource_body_stream_url; 172 GURL resource_body_stream_url;
173 173
174 // Wether or not the initiator of this request is a secure context. 174 // Wether or not the initiator of this request is a secure context.
175 bool initiated_in_secure_context = false; 175 bool initiated_in_secure_context = false;
176
177 // The response should be downloaded and stored in the network cache, but the
178 // not sent back to the renderer.
179 bool download_to_network_cache_only = false;
176 }; 180 };
177 181
178 } // namespace content 182 } // namespace content
179 183
180 #endif // CONTENT_COMMON_RESOURCE_REQUEST_H_ 184 #endif // CONTENT_COMMON_RESOURCE_REQUEST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698