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

Side by Side Diff: components/data_use_measurement/core/data_use_ascriber.cc

Issue 2354323002: Propagate network delegate events to ChromeDataUseAscriber. (Closed)
Patch Set: Added comments Created 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "components/data_use_measurement/core/data_use_ascriber.h"
6
7 namespace data_use_measurement {
8
9 void DataUseAscriber::OnBeforeUrlRequest(net::URLRequest* request) {}
10
11 void DataUseAscriber::OnBeforeRedirect(net::URLRequest* request,
12 const GURL& new_location) {}
13
14 void DataUseAscriber::OnNetworkBytesSent(net::URLRequest* request,
15 int64_t bytes_sent) {}
16
17 void DataUseAscriber::OnNetworkBytesReceived(net::URLRequest* request,
18 int64_t bytes_received) {}
19
20 void DataUseAscriber::OnUrlRequestCompleted(net::URLRequest* request,
21 bool started) {}
22
23 } // namespace data_use_measurement
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698