blob: 86801404b56e57580799ea5fbb476466b2140ffc (
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
60
61
62
63
64
65
|
// Copyright (c) 2011 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 CHROME_BROWSER_CHROMEOS_PROXY_CROS_SETTINGS_PROVIDER_H_
#define CHROME_BROWSER_CHROMEOS_PROXY_CROS_SETTINGS_PROVIDER_H_
#pragma once
#include "base/memory/singleton.h"
#include "base/values.h"
#include "chrome/browser/chromeos/cros_settings_provider.h"
#include "chrome/browser/chromeos/proxy_config_service_impl.h"
namespace chromeos {
class ProxyCrosSettingsProvider : public CrosSettingsProvider {
public:
ProxyCrosSettingsProvider();
// CrosSettingsProvider implementation.
virtual bool Get(const std::string& path, Value** out_value) const OVERRIDE;
virtual bool HandlesSetting(const std::string& path) const OVERRIDE;
// Set the current network whose proxy settings will be displayed and possibly
// edited on.
void SetCurrentNetwork(const std::string& network);
// Make the active network the current one whose proxy settings will be
// displayed and possibly edited on.
void MakeActiveNetworkCurrent();
// Returns name of current network that has been set via SetCurrentNetwork or
// MakeActiveNetworkCurrent.
const std::string& GetCurrentNetworkName() const;
// Returns true if user has selected to use shared proxies.
bool IsUsingSharedProxies() const;
private:
// CrosSettingsProvider implementation.
virtual void DoSet(const std::string& path, Value* value) OVERRIDE;
chromeos::ProxyConfigServiceImpl* GetConfigService() const;
net::ProxyServer CreateProxyServerFromHost(
const std::string& host,
const ProxyConfigServiceImpl::ProxyConfig::ManualProxy& proxy,
net::ProxyServer::Scheme scheme) const;
net::ProxyServer CreateProxyServerFromPort(
uint16 port,
const ProxyConfigServiceImpl::ProxyConfig::ManualProxy& proxy,
net::ProxyServer::Scheme scheme) const;
Value* CreateServerHostValue(
const ProxyConfigServiceImpl::ProxyConfig::ManualProxy& proxy) const;
Value* CreateServerPortValue(
const ProxyConfigServiceImpl::ProxyConfig::ManualProxy& proxy) const;
DISALLOW_COPY_AND_ASSIGN(ProxyCrosSettingsProvider);
};
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_PROXY_CROS_SETTINGS_PROVIDER_H_
|