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

Unified Diff: content/public/common/resource_response_info.h

Issue 1721813002: Adding DRP specfic UMA for FirstContentfulPaint (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing nits Created 4 years, 9 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
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 340407ecc5951b2b42eab70267972312e5223eec..3cb8898a78dd0868f41db1cbd3d34839e35411ca 100644
--- a/content/public/common/resource_response_info.h
+++ b/content/public/common/resource_response_info.h
@@ -130,15 +130,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;
+
+ // True if the navigation was proxied through data reduction proxy.
tbansal1 2016/03/08 22:14:43 s/navigation was proxied/resource was fetched/
RyanSturm 2016/03/10 00:37:58 Done.
+ bool used_data_reduction_proxy;
};
} // namespace content
#endif // CONTENT_PUBLIC_COMMON_RESOURCE_RESPONSE_INFO_H_

Powered by Google App Engine
This is Rietveld 408576698