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 3413ab7bd9627dd200187290d9c9f6d36da83f80..afe106a8fc6b1b721ea369025317a6f9332d995f 100644 |
--- a/chrome/browser/profiles/profile_io_data.h |
+++ b/chrome/browser/profiles/profile_io_data.h |
@@ -267,7 +267,7 @@ class ProfileIOData { |
public: |
AppRequestContext(); |
- void SetCookieStore(net::CookieStore* cookie_store); |
+ void SetCookieStore(scoped_ptr<net::CookieStore> cookie_store); |
void SetHttpTransactionFactory( |
scoped_ptr<net::HttpTransactionFactory> http_factory); |
void SetJobFactory(scoped_ptr<net::URLRequestJobFactory> job_factory); |
@@ -275,7 +275,7 @@ class ProfileIOData { |
private: |
~AppRequestContext() override; |
- scoped_refptr<net::CookieStore> cookie_store_; |
+ scoped_ptr<net::CookieStore> cookie_store_; |
scoped_ptr<net::HttpTransactionFactory> http_factory_; |
scoped_ptr<net::URLRequestJobFactory> job_factory_; |
}; |