| Index: chrome/browser/io_thread.h
|
| diff --git a/chrome/browser/io_thread.h b/chrome/browser/io_thread.h
|
| index 409049820c9e72db5b25fc5ec579299fb4ddf320..27100752a194985f9b3add2b0c7fc55bdec97bed 100644
|
| --- a/chrome/browser/io_thread.h
|
| +++ b/chrome/browser/io_thread.h
|
| @@ -60,6 +60,10 @@ namespace data_usage {
|
| class DataUseAggregator;
|
| }
|
|
|
| +namespace data_use_measurement {
|
| +class ChromeDataUseAscriber;
|
| +}
|
| +
|
| namespace extensions {
|
| class EventRouterForwarder;
|
| }
|
| @@ -128,6 +132,9 @@ class IOThread : public content::BrowserThreadDelegate {
|
| Globals();
|
| ~Globals();
|
|
|
| + // Ascribes all data use in Chrome to a source, such as page loads.
|
| + std::unique_ptr<data_use_measurement::ChromeDataUseAscriber>
|
| + data_use_ascriber;
|
| // Global aggregator of data use. It must outlive the
|
| // |system_network_delegate|.
|
| std::unique_ptr<data_usage::DataUseAggregator> data_use_aggregator;
|
|
|