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

Unified Diff: chrome/browser/net/chrome_network_delegate.cc

Issue 1279543002: Support needed to measure user and service traffic in Chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@NewHistogram
Patch Set: Addressing blundell's comments. Created 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/net/chrome_network_delegate.cc
diff --git a/chrome/browser/net/chrome_network_delegate.cc b/chrome/browser/net/chrome_network_delegate.cc
index bed47f796f2a1f8d21426ade117ada47c08e8877..558ced7a683275ec62949155a644487fbfc1bf3b 100644
--- a/chrome/browser/net/chrome_network_delegate.cc
+++ b/chrome/browser/net/chrome_network_delegate.cc
@@ -491,6 +491,7 @@ void ChromeNetworkDelegate::OnNetworkBytesReceived(
void ChromeNetworkDelegate::OnCompleted(net::URLRequest* request,
bool started) {
+ data_use_measurement_.ReportDataUseUMA(request);
mmenke 2015/09/02 21:48:08 You need to do this on redirects, too - following
amohammadkhan 2015/09/03 04:31:18 Done.
RecordNetworkErrorHistograms(request);
if (started) {
// Only call in for requests that were started, to obey the precondition

Powered by Google App Engine
This is Rietveld 408576698