| Index: chrome/browser/profiles/profile_io_data.cc
|
| diff --git a/chrome/browser/profiles/profile_io_data.cc b/chrome/browser/profiles/profile_io_data.cc
|
| index 39ec7628594b68bd18c44e8c8817c982a3eb6202..5a820087395756118f9e4c7cf6e68b75007b0eea 100644
|
| --- a/chrome/browser/profiles/profile_io_data.cc
|
| +++ b/chrome/browser/profiles/profile_io_data.cc
|
| @@ -573,6 +573,17 @@ void ProfileIOData::AppRequestContext::SetCookieStore(
|
| set_cookie_store(cookie_store_.get());
|
| }
|
|
|
| +void ProfileIOData::AppRequestContext::SetChannelIDService(
|
| + std::unique_ptr<net::ChannelIDService> channel_id_service) {
|
| + channel_id_service_ = std::move(channel_id_service);
|
| + set_channel_id_service(channel_id_service_.get());
|
| +}
|
| +
|
| +void ProfileIOData::AppRequestContext::SetHttpNetworkSession(
|
| + std::unique_ptr<net::HttpNetworkSession> http_network_session) {
|
| + http_network_session_ = std::move(http_network_session);
|
| +}
|
| +
|
| void ProfileIOData::AppRequestContext::SetHttpTransactionFactory(
|
| std::unique_ptr<net::HttpTransactionFactory> http_factory) {
|
| http_factory_ = std::move(http_factory);
|
|
|