repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Update V8 to version 4.6.48.
[chromium-blink-merge.git]
/
net
/
data
/
proxy_resolver_v8_unittest
/
side_effects.js
blob
39b3b2d6ca3b42e3ed8b7754fb0cc5c89dccef28
1
if (!gCounter) {
2
// We write it this way so if the script gets loaded twice,
3
// gCounter remains dirty.
4
var gCounter = 0;
5
}
6
7
function FindProxyForURL(url, host) {
8
return "PROXY sideffect_" + gCounter++;
9
}
10