blob: 455359af8a9a56d3e02ca004828892e926c8d4db (
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
|
// Copyright (c) 2010 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 NET_PROXY_POLLING_PROXY_CONFIG_SERVICE_H_
#define NET_PROXY_POLLING_PROXY_CONFIG_SERVICE_H_
#pragma once
#include "base/time.h"
#include "base/ref_counted.h"
#include "net/proxy/proxy_config_service.h"
namespace net {
// PollingProxyConfigService is a base class for creating ProxyConfigService
// implementations that use polling to notice when settings have change.
//
// It runs code to get the current proxy settings on a background worker
// thread, and notifies registered observers when the value changes.
class PollingProxyConfigService : public ProxyConfigService {
public:
// ProxyConfigService implementation:
virtual void AddObserver(Observer* observer);
virtual void RemoveObserver(Observer* observer);
virtual bool GetLatestProxyConfig(ProxyConfig* config);
virtual void OnLazyPoll();
protected:
// Function for retrieving the current proxy configuration.
// Implementors must be threadsafe as the function will be invoked from
// worker threads.
typedef void (*GetConfigFunction)(ProxyConfig*);
// Creates a polling-based ProxyConfigService which will test for new
// settings at most every |poll_interval| time by calling |get_config_func|
// on a worker thread.
PollingProxyConfigService(
base::TimeDelta poll_interval,
GetConfigFunction get_config_func);
virtual ~PollingProxyConfigService();
private:
class Core;
scoped_refptr<Core> core_;
};
} // namespace net
#endif // NET_PROXY_POLLING_PROXY_CONFIG_SERVICE_H_
|