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

Unified Diff: content/public/common/resource_response.cc

Issue 2484633004: Change Lo-Fi bool to bitmask to support multiple Previews types (Closed)
Patch Set: use PreviewsState everywhere Created 4 years 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 side-by-side diff with in-line comments
Download patch
Index: content/public/common/resource_response.cc
diff --git a/content/public/common/resource_response.cc b/content/public/common/resource_response.cc
index cb0bf9c634fa16ec4a5eadde70c2ee9d31924598..219c4525144017494b490a8db5ffd20bc3d5bd72 100644
--- a/content/public/common/resource_response.cc
+++ b/content/public/common/resource_response.cc
@@ -51,7 +51,7 @@ scoped_refptr<ResourceResponse> ResourceResponse::DeepCopy() const {
head.service_worker_start_time;
new_response->head.service_worker_ready_time =
head.service_worker_ready_time;
- new_response->head.is_using_lofi = head.is_using_lofi;
+ new_response->head.previews_state = head.previews_state;
new_response->head.effective_connection_type = head.effective_connection_type;
new_response->head.signed_certificate_timestamps =
head.signed_certificate_timestamps;

Powered by Google App Engine
This is Rietveld 408576698