Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(558)

Unified Diff: mojo/services/network/cookie_store_impl.cc

Issue 1227373002: Roll mojo SDK to 734c6e1652ff2f3b696e441722838f453f4f9b42 (Closed) Base URL: https://github.com/domokit/monet.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 6882435a1b4fc020cb789205465d914108c5870a..06c28da4107e6cbd6a8218c08808bd4e525c3674 100644
--- a/mojo/services/network/cookie_store_impl.cc
+++ b/mojo/services/network/cookie_store_impl.cc
@@ -24,8 +24,10 @@ void AdaptSetCookieCallback(const Callback<void(bool)>& callback,
} // namespace
-CookieStoreImpl::CookieStoreImpl(NetworkContext* context, const GURL& origin)
- : context_(context), origin_(origin) {
+CookieStoreImpl::CookieStoreImpl(InterfaceRequest<CookieStore> request,
+ NetworkContext* context,
+ const GURL& origin)
+ : context_(context), origin_(origin), binding_(this, request.Pass()) {
}
CookieStoreImpl::~CookieStoreImpl() {

Powered by Google App Engine
This is Rietveld 408576698