| 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 9e86ca9adb1a8e8c9ac1ea37b4657a8e031ea9d5..ef3a6be4cbaf10092c6bbe7e726e74a5bcb70f53 100644
|
| --- a/chrome/browser/profiles/profile_io_data.cc
|
| +++ b/chrome/browser/profiles/profile_io_data.cc
|
| @@ -571,9 +571,9 @@ ProfileIOData::AppRequestContext::AppRequestContext() {
|
| }
|
|
|
| void ProfileIOData::AppRequestContext::SetCookieStore(
|
| - net::CookieStore* cookie_store) {
|
| - cookie_store_ = cookie_store;
|
| - set_cookie_store(cookie_store);
|
| + scoped_ptr<net::CookieStore> cookie_store) {
|
| + cookie_store_ = std::move(cookie_store);
|
| + set_cookie_store(cookie_store_.get());
|
| }
|
|
|
| void ProfileIOData::AppRequestContext::SetHttpTransactionFactory(
|
|
|