Explicitly add python-numpy dependency to install-build-deps.
[chromium-blink-merge.git] / net / data / proxy_resolver_v8_tracing_unittest / global_sideffects2.js
blobf5e5076a7f82c227a791d2bea0f0f610af9c4a51
1 var g_iteration = 0;
3 function FindProxyForURL(url, host) {
4 g_iteration++;
6 var ips;
8 if (g_iteration < 3) {
9 ips = [
10 dnsResolve('host1'),
11 dnsResolve('host2')
13 } else {
14 ips = [ dnsResolve('host' + g_iteration) ];
17 return 'PROXY ' + ips.join('-') + ':100';