| Index: chrome/browser/profiles/profile_io_data.h
|
| diff --git a/chrome/browser/profiles/profile_io_data.h b/chrome/browser/profiles/profile_io_data.h
|
| index de32c6e55625485ddd56d647c6b6293c67844bb3..46f218b580b8049e1029fa39f94498834264d910 100644
|
| --- a/chrome/browser/profiles/profile_io_data.h
|
| +++ b/chrome/browser/profiles/profile_io_data.h
|
| @@ -267,6 +267,10 @@ class ProfileIOData {
|
| AppRequestContext();
|
|
|
| void SetCookieStore(std::unique_ptr<net::CookieStore> cookie_store);
|
| + void SetChannelIDService(
|
| + std::unique_ptr<net::ChannelIDService> channel_id_service);
|
| + void SetHttpNetworkSession(
|
| + std::unique_ptr<net::HttpNetworkSession> http_network_session);
|
| void SetHttpTransactionFactory(
|
| std::unique_ptr<net::HttpTransactionFactory> http_factory);
|
| void SetJobFactory(std::unique_ptr<net::URLRequestJobFactory> job_factory);
|
| @@ -275,6 +279,8 @@ class ProfileIOData {
|
| ~AppRequestContext() override;
|
|
|
| std::unique_ptr<net::CookieStore> cookie_store_;
|
| + std::unique_ptr<net::ChannelIDService> channel_id_service_;
|
| + std::unique_ptr<net::HttpNetworkSession> http_network_session_;
|
| std::unique_ptr<net::HttpTransactionFactory> http_factory_;
|
| std::unique_ptr<net::URLRequestJobFactory> job_factory_;
|
| };
|
|
|