| 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 f34a67baecad18a1404ff542d4a169d898ef6a04..57f2fd3511f97fca178de549e2a4993c0fe66eb2 100644
|
| --- a/chrome/browser/profiles/profile_io_data.cc
|
| +++ b/chrome/browser/profiles/profile_io_data.cc
|
| @@ -568,9 +568,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(
|
|
|