OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef COMPONENTS_DATA_USE_MEASUREMENT_CORE_DATA_USE_ASCRIBER_H_ | 5 #ifndef COMPONENTS_DATA_USE_MEASUREMENT_CORE_DATA_USE_ASCRIBER_H_ |
6 #define COMPONENTS_DATA_USE_MEASUREMENT_CORE_DATA_USE_ASCRIBER_H_ | 6 #define COMPONENTS_DATA_USE_MEASUREMENT_CORE_DATA_USE_ASCRIBER_H_ |
7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 10 #include "url/gurl.h" |
| 11 |
8 namespace net { | 12 namespace net { |
9 class URLRequest; | 13 class URLRequest; |
10 } | 14 } |
11 | 15 |
12 namespace data_use_measurement { | 16 namespace data_use_measurement { |
13 | 17 |
14 class DataUseRecorder; | 18 class DataUseRecorder; |
15 | 19 |
16 // Abstract class that manages instances of DataUseRecorder and maps | 20 // Abstract class that manages instances of DataUseRecorder and maps |
17 // a URLRequest instance to its appropriate DataUseRecorder. An embedder | 21 // a URLRequest instance to its appropriate DataUseRecorder. An embedder |
18 // should provide an override if it is interested in tracking data usage. Data | 22 // 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 | 23 // use from all URLRequests mapped to the same DataUseRecorder will be grouped |
20 // together and reported as a single use. | 24 // together and reported as a single use. |
21 class DataUseAscriber { | 25 class DataUseAscriber { |
22 public: | 26 public: |
23 virtual ~DataUseAscriber() {} | 27 virtual ~DataUseAscriber() {} |
24 | 28 |
25 // Returns the DataUseRecorder to which data usage for the given URL should | 29 // 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 | 30 // be ascribed. If no existing DataUseRecorder exists, a new one will be |
27 // created. | 31 // created. |
28 virtual DataUseRecorder* GetDataUseRecorder( | 32 virtual DataUseRecorder* GetDataUseRecorder( |
29 const net::URLRequest* request) = 0; | 33 const net::URLRequest* request) = 0; |
| 34 |
| 35 // Methods called by DataUseNetworkDelegate to propagate data use information: |
| 36 virtual void OnBeforeUrlRequest(net::URLRequest* request); |
| 37 |
| 38 virtual void OnBeforeRedirect(net::URLRequest* request, |
| 39 const GURL& new_location); |
| 40 |
| 41 virtual void OnNetworkBytesSent(net::URLRequest* request, int64_t bytes_sent); |
| 42 |
| 43 virtual void OnNetworkBytesReceived(net::URLRequest* request, |
| 44 int64_t bytes_received); |
| 45 |
| 46 virtual void OnUrlRequestCompleted(net::URLRequest* request, bool started); |
30 }; | 47 }; |
31 | 48 |
32 } // namespace data_use_measurement | 49 } // namespace data_use_measurement |
33 | 50 |
34 #endif // COMPONENTS_DATA_USE_MEASUREMENT_CORE_DATA_USE_ASCRIBER_H_ | 51 #endif // COMPONENTS_DATA_USE_MEASUREMENT_CORE_DATA_USE_ASCRIBER_H_ |
OLD | NEW |