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

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

Issue 1227373002: Roll mojo SDK to 734c6e1652ff2f3b696e441722838f453f4f9b42 (Closed) Base URL: https://github.com/domokit/monet.git@master
Patch Set: Follow review 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
« no previous file with comments | « mojo/common/weak_interface_ptr_set.h ('k') | mojo/services/network/cookie_store_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/network/cookie_store_impl.h
diff --git a/mojo/services/network/cookie_store_impl.h b/mojo/services/network/cookie_store_impl.h
index e3e9711caf72f74a48abc724732b8433bc85bd20..9a9f65f2d21ebfd0f6122ca4e931449e0399107b 100644
--- a/mojo/services/network/cookie_store_impl.h
+++ b/mojo/services/network/cookie_store_impl.h
@@ -6,14 +6,17 @@
#define MOJO_SERVICES_NETWORK_COOKIE_STORE_IMPL_H_
#include "mojo/services/network/public/interfaces/cookie_store.mojom.h"
+#include "third_party/mojo/src/mojo/public/cpp/bindings/strong_binding.h"
#include "url/gurl.h"
namespace mojo {
class NetworkContext;
-class CookieStoreImpl : public InterfaceImpl<CookieStore> {
+class CookieStoreImpl : public CookieStore {
public:
- CookieStoreImpl(NetworkContext* context, const GURL& origin);
+ CookieStoreImpl(InterfaceRequest<CookieStore> request,
+ NetworkContext* context,
+ const GURL& origin);
~CookieStoreImpl() override;
private:
@@ -23,6 +26,7 @@ class CookieStoreImpl : public InterfaceImpl<CookieStore> {
const String& cookie,
const Callback<void(bool)>& callback) override;
+ mojo::StrongBinding<CookieStore> binding_;
NetworkContext* context_;
GURL origin_;
« no previous file with comments | « mojo/common/weak_interface_ptr_set.h ('k') | mojo/services/network/cookie_store_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698