blob: e69109bc70478f815eb9394b3158c05ffb9d8287 (
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
// 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_PROXY_RESOLVER_JS_BINDINGS_H_
#define NET_PROXY_PROXY_RESOLVER_JS_BINDINGS_H_
#pragma once
#include <string>
#include "base/string16.h"
class MessageLoop;
namespace net {
class HostResolver;
class NetLog;
struct ProxyResolverRequestContext;
// Interface for the javascript bindings.
class ProxyResolverJSBindings {
public:
ProxyResolverJSBindings() : current_request_context_(NULL) {}
virtual ~ProxyResolverJSBindings() {}
// Handler for "alert(message)"
virtual void Alert(const string16& message) = 0;
// Handler for "myIpAddress()". Returns true on success and fills
// |*first_ip_address| with the result.
virtual bool MyIpAddress(std::string* first_ip_address) = 0;
// Handler for "myIpAddressEx()". Returns true on success and fills
// |*ip_address_list| with the result.
//
// This is a Microsoft extension to PAC for IPv6, see:
// http://blogs.msdn.com/wndp/articles/IPV6_PAC_Extensions_v0_9.aspx
virtual bool MyIpAddressEx(std::string* ip_address_list) = 0;
// Handler for "dnsResolve(host)". Returns true on success and fills
// |*first_ip_address| with the result.
virtual bool DnsResolve(const std::string& host,
std::string* first_ip_address) = 0;
// Handler for "dnsResolveEx(host)". Returns true on success and fills
// |*ip_address_list| with the result.
//
// This is a Microsoft extension to PAC for IPv6, see:
// http://blogs.msdn.com/wndp/articles/IPV6_PAC_Extensions_v0_9.aspx
virtual bool DnsResolveEx(const std::string& host,
std::string* ip_address_list) = 0;
// Handler for when an error is encountered. |line_number| may be -1
// if a line number is not applicable to this error.
virtual void OnError(int line_number, const string16& error) = 0;
// Called before the thread running the proxy resolver is stopped.
virtual void Shutdown() = 0;
// Creates a default javascript bindings implementation that will:
// - Send script error messages to both LOG(INFO), and the NetLog.
// - Send script alert()s to both LOG(INFO), and the NetLog.
// - Use the provided host resolver to service dnsResolve().
//
// Note that |host_resolver| will be used in sync mode mode.
static ProxyResolverJSBindings* CreateDefault(HostResolver* host_resolver,
NetLog* net_log);
// Sets details about the currently executing FindProxyForURL() request.
void set_current_request_context(
ProxyResolverRequestContext* current_request_context) {
current_request_context_ = current_request_context;
}
// Retrieves details about the currently executing FindProxyForURL() request.
ProxyResolverRequestContext* current_request_context() {
return current_request_context_;
}
private:
ProxyResolverRequestContext* current_request_context_;
};
} // namespace net
#endif // NET_PROXY_PROXY_RESOLVER_JS_BINDINGS_H_
|