2019-03-26 01:10:48 +00:00
|
|
|
// Copyright (c) 2019 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#ifndef SHELL_BROWSER_NET_NETWORK_CONTEXT_SERVICE_H_
|
|
|
|
#define SHELL_BROWSER_NET_NETWORK_CONTEXT_SERVICE_H_
|
2019-03-26 01:10:48 +00:00
|
|
|
|
|
|
|
#include "base/files/file_path.h"
|
|
|
|
#include "chrome/browser/net/proxy_config_monitor.h"
|
|
|
|
#include "components/keyed_service/core/keyed_service.h"
|
2019-09-18 19:58:00 +00:00
|
|
|
#include "mojo/public/cpp/bindings/remote.h"
|
2019-03-26 01:10:48 +00:00
|
|
|
#include "services/network/public/mojom/network_context.mojom.h"
|
2020-02-04 20:19:40 +00:00
|
|
|
#include "shell/browser/electron_browser_context.h"
|
2019-03-26 01:10:48 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2019-03-26 01:10:48 +00:00
|
|
|
|
|
|
|
// KeyedService that initializes and provides access to the NetworkContexts for
|
|
|
|
// a BrowserContext.
|
|
|
|
class NetworkContextService : public KeyedService {
|
|
|
|
public:
|
|
|
|
explicit NetworkContextService(content::BrowserContext* context);
|
|
|
|
~NetworkContextService() override;
|
|
|
|
|
|
|
|
NetworkContextService(const NetworkContextService&) = delete;
|
|
|
|
NetworkContextService& operator=(const NetworkContextService&) = delete;
|
|
|
|
|
|
|
|
// Creates a NetworkContext for the BrowserContext.
|
2019-09-18 19:58:00 +00:00
|
|
|
mojo::Remote<network::mojom::NetworkContext> CreateNetworkContext();
|
2019-03-26 01:10:48 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
// Creates parameters for the NetworkContext.
|
|
|
|
network::mojom::NetworkContextParamsPtr CreateNetworkContextParams(
|
|
|
|
bool in_memory,
|
|
|
|
const base::FilePath& path);
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
ElectronBrowserContext* browser_context_;
|
2019-03-26 01:10:48 +00:00
|
|
|
ProxyConfigMonitor proxy_config_monitor_;
|
|
|
|
};
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2019-03-26 01:10:48 +00:00
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#endif // SHELL_BROWSER_NET_NETWORK_CONTEXT_SERVICE_H_
|