blob: c2b20cd7e3507b38a2b74fadacb526236924d088 [file] [log] [blame]
// Copyright 2017 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 CONTENT_NETWORK_RESTRICTED_COOKIE_MANAGER_H_
#define CONTENT_NETWORK_RESTRICTED_COOKIE_MANAGER_H_
#include <string>
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "base/threading/sequenced_task_runner_handle.h"
#include "content/common/content_export.h"
#include "mojo/public/cpp/bindings/binding.h"
#include "net/cookies/canonical_cookie.h"
#include "services/network/public/interfaces/restricted_cookie_manager.mojom.h"
#include "url/gurl.h"
namespace net {
class CookieStore;
} // namespace net
namespace content {
// RestrictedCookieManager implementation.
//
// Instances of this class must be created and used on the I/O thread. Instances
// are created by CreateMojoService() and are bound to the lifetimes of the
// mojo connections that they serve, via mojo::StrongBinding.
class CONTENT_EXPORT RestrictedCookieManager
: public network::mojom::RestrictedCookieManager {
public:
RestrictedCookieManager(net::CookieStore* cookie_store,
int render_process_id,
int render_frame_id);
~RestrictedCookieManager() override;
// Implements CookieStore.getAll() in the Async Cookies API.
//
// This method is also used as the backend for CookieStore.get() and
// CookieStore.has().
void GetAllForUrl(const GURL& url,
const GURL& site_for_cookies,
network::mojom::CookieManagerGetOptionsPtr options,
GetAllForUrlCallback callback) override;
void SetCanonicalCookie(const net::CanonicalCookie& cookie,
const GURL& url,
const GURL& site_for_cookies,
SetCanonicalCookieCallback callback) override;
private:
// Feeds a net::CookieList to a GetAllForUrl() callback.
void CookieListToGetAllForUrlCallback(
const GURL& url,
const GURL& site_for_cookies,
network::mojom::CookieManagerGetOptionsPtr options,
GetAllForUrlCallback callback,
const net::CookieList& cookie_list);
net::CookieStore* cookie_store_;
const int render_process_id_;
const int render_frame_id_;
base::WeakPtrFactory<RestrictedCookieManager> weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(RestrictedCookieManager);
};
} // namespace content
#endif // CONTENT_NETWORK_RESTRICTED_COOKIE_MANAGER_H_