Index: mojo/services/network/cookie_store_impl.cc |
diff --git a/mojo/services/network/cookie_store_impl.cc b/mojo/services/network/cookie_store_impl.cc |
index 033d7a44310e8c43e44008eae66c7f140495a211..05963aa3de4e1be66e3d8fb73d72e0506c18c3da 100644 |
--- a/mojo/services/network/cookie_store_impl.cc |
+++ b/mojo/services/network/cookie_store_impl.cc |
@@ -24,10 +24,13 @@ void AdaptSetCookieCallback(const Callback<void(bool)>& callback, |
} // namespace |
-CookieStoreImpl::CookieStoreImpl(NetworkContext* context, |
- const GURL& origin) |
+CookieStoreImpl::CookieStoreImpl( |
+ NetworkContext* context, |
+ const GURL& origin, |
+ scoped_ptr<mojo::AppRefCount> app_refcount) |
: context_(context), |
- origin_(origin) { |
+ origin_(origin), |
+ app_refcount_(app_refcount.Pass()) { |
} |
CookieStoreImpl::~CookieStoreImpl() { |