1if (!gCounter) {
2  // We write it this way so if the script gets loaded twice,
3  // gCounter remains dirty.
4  var gCounter = 0;
5}
6
7function FindProxyForURL(url, host) {
8  return "PROXY sideffect_" + gCounter++;
9}
10
11