Chromium Code Reviews| Index: content/public/common/resource_response_info.h |
| diff --git a/content/public/common/resource_response_info.h b/content/public/common/resource_response_info.h |
| index e7b7c7a71319af87ee68e0161eb32524f142e72e..7714ae2d67c37e31f99276332f7bb5c2e318785b 100644 |
| --- a/content/public/common/resource_response_info.h |
| +++ b/content/public/common/resource_response_info.h |
| @@ -129,15 +129,18 @@ struct ResourceResponseInfo { |
| // TODO(ksakamoto): Move this to net::LoadTimingInfo. |
| base::TimeTicks service_worker_start_time; |
| // The time immediately before dispatching fetch event in ServiceWorker. |
| // If the response is not provided by the ServiceWorker, kept empty. |
| // TODO(ksakamoto): Move this to net::LoadTimingInfo. |
| base::TimeTicks service_worker_ready_time; |
| // Whether or not the request was for a LoFi version of the resource. |
| bool is_using_lofi; |
| + |
| + // Whether the request went through the data reduction proxy or not |
|
bengr
2016/02/26 22:53:58
Period.
RyanSturm
2016/03/01 19:36:04
Done.
|
| + bool was_fetched_via_data_reduction_proxy; |
| }; |
| } // namespace content |
| #endif // CONTENT_PUBLIC_COMMON_RESOURCE_RESPONSE_INFO_H_ |