// 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 SERVICES_PROXY_RESOLVER_PROXY_RESOLVER_V8_H_ #define SERVICES_PROXY_RESOLVER_PROXY_RESOLVER_V8_H_ #include <stddef.h> #include <memory> #include <string> #include "base/compiler_specific.h" #include "base/memory/scoped_refptr.h" #include "net/proxy_resolution/proxy_resolve_dns_operation.h" class GURL; namespace net { class ProxyInfo; class PacFileData; } // namespace net namespace proxy_resolver { // A synchronous ProxyResolver-like that uses V8 to evaluate PAC scripts. class ProxyResolverV8 { … }; } // namespace proxy_resolver #endif // SERVICES_PROXY_RESOLVER_PROXY_RESOLVER_V8_H_