Chromium Code Reviews| Index: webkit/tools/test_shell/test_shell_request_context.cc |
| diff --git a/webkit/tools/test_shell/test_shell_request_context.cc b/webkit/tools/test_shell/test_shell_request_context.cc |
| index d7055b6f36571b9361888a62d66748d8d6a31cd1..c7383f800b9d3f0777b57b4a85ed2c0ce22da8cb 100644 |
| --- a/webkit/tools/test_shell/test_shell_request_context.cc |
| +++ b/webkit/tools/test_shell/test_shell_request_context.cc |
| @@ -37,7 +37,7 @@ void TestShellRequestContext::Init( |
| accept_language_ = "en-us,en"; |
| accept_charset_ = "iso-8859-1,*,utf-8"; |
| -#if defined(OS_LINUX) |
| +#if defined(OS_POSIX) && !defined(OS_MACOSX) |
| // Use no proxy to avoid ProxyConfigServiceLinux. |
| // Enabling use of the ProxyConfigServiceLinux requires: |
| // -Calling from a thread with a TYPE_UI MessageLoop, |
| @@ -45,6 +45,7 @@ void TestShellRequestContext::Init( |
| // -Keep in mind that proxy auto configuration is also |
| // non-functional on linux in this context because of v8 threading |
| // issues. |
| + // TODO(port): rename "linux" to some inspecific unix. |
|
agl
2009/12/30 23:12:56
"nonspecific"
|
| scoped_ptr<net::ProxyConfigService> proxy_config_service( |
| new net::ProxyConfigServiceFixed(net::ProxyConfig())); |
| #else |