1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef NET_PROXY_PROXY_CONFIG_SERVICE_MAC_H_
6 #define NET_PROXY_PROXY_CONFIG_SERVICE_MAC_H_
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10 #include "base/memory/ref_counted.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "base/observer_list.h"
13 #include "net/base/network_config_watcher_mac.h"
14 #include "net/proxy/proxy_config.h"
15 #include "net/proxy/proxy_config_service.h"
18 class SingleThreadTaskRunner
;
23 // TODO(sergeyu): This class needs to be exported because remoting code
24 // creates it directly. Fix that and remove NET_EXPORT here.
26 class NET_EXPORT ProxyConfigServiceMac
: public ProxyConfigService
{
28 // Constructs a ProxyConfigService that watches the Mac OS system settings.
29 // This instance is expected to be operated and deleted on the same thread
30 // (however it may be constructed from a different thread).
31 explicit ProxyConfigServiceMac(
32 base::SingleThreadTaskRunner
* io_thread_task_runner
);
33 virtual ~ProxyConfigServiceMac();
36 // ProxyConfigService implementation:
37 virtual void AddObserver(Observer
* observer
) OVERRIDE
;
38 virtual void RemoveObserver(Observer
* observer
) OVERRIDE
;
39 virtual ConfigAvailability
GetLatestProxyConfig(ProxyConfig
* config
) OVERRIDE
;
44 // Forwarder just exists to keep the NetworkConfigWatcherMac API out of
45 // ProxyConfigServiceMac's public API.
46 class Forwarder
: public NetworkConfigWatcherMac::Delegate
{
48 explicit Forwarder(ProxyConfigServiceMac
* proxy_config_service
)
49 : proxy_config_service_(proxy_config_service
) {}
51 // NetworkConfigWatcherMac::Delegate implementation:
52 virtual void StartReachabilityNotifications() OVERRIDE
{}
53 virtual void SetDynamicStoreNotificationKeys(
54 SCDynamicStoreRef store
) OVERRIDE
;
55 virtual void OnNetworkConfigChange(CFArrayRef changed_keys
) OVERRIDE
;
58 ProxyConfigServiceMac
* const proxy_config_service_
;
59 DISALLOW_COPY_AND_ASSIGN(Forwarder
);
62 // Methods directly called by the NetworkConfigWatcherMac::Delegate:
63 void SetDynamicStoreNotificationKeys(SCDynamicStoreRef store
);
64 void OnNetworkConfigChange(CFArrayRef changed_keys
);
66 // Called when the proxy configuration has changed, to notify the observers.
67 void OnProxyConfigChanged(const ProxyConfig
& new_config
);
70 scoped_ptr
<const NetworkConfigWatcherMac
> config_watcher_
;
72 ObserverList
<Observer
> observers_
;
74 // Holds the last system proxy settings that we fetched.
75 bool has_fetched_config_
;
76 ProxyConfig last_config_fetched_
;
78 scoped_refptr
<Helper
> helper_
;
80 // The thread that we expect to be operated on.
81 const scoped_refptr
<base::SingleThreadTaskRunner
> io_thread_task_runner_
;
83 DISALLOW_COPY_AND_ASSIGN(ProxyConfigServiceMac
);
88 #endif // NET_PROXY_PROXY_CONFIG_SERVICE_MAC_H_