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

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

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/common/previews_state.h ('k') | content/public/common/resource_response_info.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/resource_response.cc
diff --git a/content/public/common/resource_response.cc b/content/public/common/resource_response.cc
index a9456410728a0cfa3b3608be9cf7f02645ee20fb..b8b253d41c98e381ffe3d9c49a7f270c16d61171 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;
« no previous file with comments | « content/public/common/previews_state.h ('k') | content/public/common/resource_response_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698