// Copyright 2011 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_PROXY_RESOLUTION_POLLING_PROXY_CONFIG_SERVICE_H_ #define NET_PROXY_RESOLUTION_POLLING_PROXY_CONFIG_SERVICE_H_ #include "base/compiler_specific.h" #include "base/memory/scoped_refptr.h" #include "base/time/time.h" #include "net/base/net_export.h" #include "net/proxy_resolution/proxy_config_service.h" #include "net/traffic_annotation/network_traffic_annotation.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 NET_EXPORT_PRIVATE PollingProxyConfigService : public ProxyConfigService { … }; } // namespace net #endif // NET_PROXY_RESOLUTION_POLLING_PROXY_CONFIG_SERVICE_H_