blob: 29edd9c89be8187cb766c8972474bb4e9fb132b9 [file] [log] [blame]
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef FUCHSIA_WEB_WEBENGINE_BROWSER_COOKIE_MANAGER_IMPL_H_
#define FUCHSIA_WEB_WEBENGINE_BROWSER_COOKIE_MANAGER_IMPL_H_
#include <fuchsia/web/cpp/fidl.h>
#include "base/functional/callback.h"
#include "fuchsia_web/webengine/web_engine_export.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "services/network/public/mojom/cookie_manager.mojom.h"
namespace network {
namespace mojom {
class NetworkContext;
} // namespace mojom
} // namespace network
class WEB_ENGINE_EXPORT CookieManagerImpl final
: public fuchsia::web::CookieManager {
public:
// Used to request the BrowserContext's CookieManager. Since the
// NetworkContext may change, e.g. if the NetworkService crashes, the returned
// pointer will be used immediately, and not cached by the CookieManagerImpl.
using GetNetworkContextCallback =
base::RepeatingCallback<network::mojom::NetworkContext*()>;
// |get_network_context| will be called to (re)connect to CookieManager,
// on-demand, in response to query/observation requests.
explicit CookieManagerImpl(GetNetworkContextCallback get_network_context);
CookieManagerImpl(const CookieManagerImpl&) = delete;
CookieManagerImpl& operator=(const CookieManagerImpl&) = delete;
~CookieManagerImpl() override;
// fuchsia::web::CookieManager implementation:
void ObserveCookieChanges(
fidl::StringPtr url,
fidl::StringPtr name,
fidl::InterfaceRequest<fuchsia::web::CookiesIterator> changes) override;
void GetCookieList(
fidl::StringPtr url,
fidl::StringPtr name,
fidl::InterfaceRequest<fuchsia::web::CookiesIterator> cookies) override;
// Used by tests to monitor for the Mojo CookieManager disconnecting
void set_on_mojo_disconnected_for_test(base::OnceClosure on_disconnected) {
on_mojo_disconnected_for_test_ = std::move(on_disconnected);
}
private:
// (Re)connects |cookie_manager_| if not currently connected.
void EnsureCookieManager();
// Handles errors on the |cookie_manager_| Mojo channel.
void OnMojoDisconnect();
const GetNetworkContextCallback get_network_context_;
mojo::Remote<network::mojom::CookieManager> cookie_manager_;
base::OnceClosure on_mojo_disconnected_for_test_;
};
#endif // FUCHSIA_WEB_WEBENGINE_BROWSER_COOKIE_MANAGER_IMPL_H_