blob: 6e4e1b2fa54c194ac281e335011931755c8395f2 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MOJO_SERVICES_NETWORK_COOKIE_STORE_IMPL_H_
#define MOJO_SERVICES_NETWORK_COOKIE_STORE_IMPL_H_
#include "mojo/services/network/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 CookieStore {
public:
CookieStoreImpl(InterfaceRequest<CookieStore> request,
NetworkContext* context,
const GURL& origin);
~CookieStoreImpl() override;
private:
// CookieStore methods:
void Get(const String& url, const Callback<void(String)>& callback) override;
void Set(const String& url,
const String& cookie,
const Callback<void(bool)>& callback) override;
mojo::StrongBinding<CookieStore> binding_;
NetworkContext* context_;
GURL origin_;
DISALLOW_COPY_AND_ASSIGN(CookieStoreImpl);
};
} // namespace mojo
#endif // MOJO_SERVICES_NETWORK_COOKIE_STORE_IMPL_H_