chromium/chrome/browser/safe_browsing/network_context_service.h

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_SAFE_BROWSING_NETWORK_CONTEXT_SERVICE_H_
#define CHROME_BROWSER_SAFE_BROWSING_NETWORK_CONTEXT_SERVICE_H_

#include <memory>

#include "chrome/browser/net/proxy_config_monitor.h"
#include "components/keyed_service/core/keyed_service.h"
#include "components/safe_browsing/content/browser/safe_browsing_network_context.h"
#include "services/network/public/mojom/network_context.mojom.h"

class Profile;

namespace safe_browsing {

// This class manages a network context for Safe Browsing communications. The
// primary reason for the use of a separate network context is to ensure that
// cookies are not shared between Safe Browsing functionality and regular
// browsing.
class NetworkContextService : public KeyedService {};

}  // namespace safe_browsing

#endif  // CHROME_BROWSER_SAFE_BROWSING_NETWORK_CONTEXT_SERVICE_H_