OLD | NEW |
---|---|
(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 | |
bengr
2016/09/01 00:16:55
-> maps a |URLRequest| instance to its ...
Not at Google. Contact bengr
2016/09/07 23:38:38
Done.
| |
17 // |URLRequest| instances to their appropriate |DataUseRecorder|. Applications | |
bengr
2016/09/01 00:16:55
Applications -> An embedder
Not at Google. Contact bengr
2016/09/07 23:38:38
Done.
| |
18 // should provide overrides if they are interested in tracking data usage | |
bengr
2016/09/01 00:16:55
overrides -> an override
if they are -> if it is
Not at Google. Contact bengr
2016/09/07 23:38:38
Done.
| |
19 // and surfacing it to the end user. Data use from all URLRequests mapped to the | |
bengr
2016/09/01 00:16:55
Why does it matter that it is surfaced to the end
Not at Google. Contact bengr
2016/09/07 23:38:38
Done.
| |
20 // same |DataUseRecorder| will be grouped 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_ | |
OLD | NEW |