summaryrefslogtreecommitdiffstats
path: root/src/core/net/proxy_config_monitor.h
blob: 585e4b7ede5983f55f8ab57ad2b5754711750c9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

// originally based on chrome/browser/net/proxy_config_monitor.h
// 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 PROXY_CONFIG_MONITOR_H
#define PROXY_CONFIG_MONITOR_H

#include <memory>

#include "mojo/public/cpp/bindings/receiver_set.h"
#include "mojo/public/cpp/bindings/remote_set.h"
#include "net/proxy_resolution/proxy_config_service.h"
#include "services/network/public/mojom/network_context.mojom-forward.h"
#include "services/network/public/mojom/proxy_config_with_annotation.mojom.h"

namespace net {
class ProxyConfigWithAnnotation;
}

class PrefService;
class ProxyConfigServiceQt;

// Tracks the ProxyConfig to use, and passes any updates to a NetworkContext's
// ProxyConfigClient. This also responds to errors related to proxy settings
// from the NetworkContext, and forwards them any listening Chrome extensions
// associated with the profile.
class ProxyConfigMonitor : public net::ProxyConfigService::Observer,
                           public network::mojom::ProxyConfigPollerClient
{
public:
    explicit ProxyConfigMonitor(PrefService *prefs = nullptr);

    ~ProxyConfigMonitor() override;

    // Populates proxy-related fields of |network_context_params|. Updated
    // ProxyConfigs will be sent to a NetworkContext created with those params
    // whenever the configuration changes. Can be called more than once to inform
    // multiple NetworkContexts of proxy changes.
    void AddToNetworkContextParams(network::mojom::NetworkContextParams *network_context_params);

private:
    // net::ProxyConfigService::Observer implementation:
    void OnProxyConfigChanged(const net::ProxyConfigWithAnnotation &config,
                              net::ProxyConfigService::ConfigAvailability availability) override;

    // network::mojom::ProxyConfigPollerClient implementation:
    void OnLazyProxyConfigPoll() override;

    std::unique_ptr<ProxyConfigServiceQt> proxy_config_service_;

    mojo::ReceiverSet<network::mojom::ProxyConfigPollerClient> poller_receiver_set_;
    mojo::RemoteSet<network::mojom::ProxyConfigClient> proxy_config_client_set_;
};

#endif // PROXY_CONFIG_MONITOR_H