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

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

Issue 2285903002: Framework to ascribe all network data use to a source. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed nits 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
« no previous file with comments | « components/data_use_measurement/core/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #ifndef COMPONENTS_DATA_USE_MEASUREMENT_CORE_DATA_USE_ASCRIBER_H_
6 #define COMPONENTS_DATA_USE_MEASUREMENT_CORE_DATA_USE_ASCRIBER_H_
7
8 namespace net {
9 class URLRequest;
10 }
11
12 namespace data_use_measurement {
13
14 class DataUseRecorder;
15
16 // Abstract class that manages instances of DataUseRecorder and maps
17 // a URLRequest instance to its appropriate DataUseRecorder. An embedder
18 // should provide an override if it is interested in tracking data usage. Data
19 // use from all URLRequests mapped to the same DataUseRecorder will be grouped
20 // together and reported as a single use.
21 class DataUseAscriber {
22 public:
23 virtual ~DataUseAscriber() {}
24
25 // Returns the DataUseRecorder to which data usage for the given URL should
26 // be ascribed. If no existing DataUseRecorder exists, a new one will be
27 // created.
28 virtual DataUseRecorder* GetDataUseRecorder(
29 const net::URLRequest* request) = 0;
30 };
31
32 } // namespace data_use_measurement
33
34 #endif // COMPONENTS_DATA_USE_MEASUREMENT_CORE_DATA_USE_ASCRIBER_H_
OLDNEW
« no previous file with comments | « components/data_use_measurement/core/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698