Chromium Code Reviews
|
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 function FindProxyForURL(url, host) { | |
| 2 return "PROXY success:80"; | |
| 3 } | |
| 4 | |
| 5 // We end the script with a comment (and no trailing newline). | |
| 6 // This used to cause problems, because internally ProxyResolverV8 | |
| 7 // would append some functions to the script; the first line of | |
| 8 // those extra functions was being considered part of the comment. | |
| OLD | NEW |