| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "net/test/remote_test_server.h" | 5 #include "net/test/remote_test_server.h" |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/base_paths.h" | 9 #include "base/base_paths.h" |
| 10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 | 43 |
| 44 // Please keep it sync with dictionary SERVER_TYPES in testserver.py | 44 // Please keep it sync with dictionary SERVER_TYPES in testserver.py |
| 45 std::string GetServerTypeString(BaseTestServer::Type type) { | 45 std::string GetServerTypeString(BaseTestServer::Type type) { |
| 46 switch (type) { | 46 switch (type) { |
| 47 case BaseTestServer::TYPE_FTP: | 47 case BaseTestServer::TYPE_FTP: |
| 48 return "ftp"; | 48 return "ftp"; |
| 49 case BaseTestServer::TYPE_GDATA: | 49 case BaseTestServer::TYPE_GDATA: |
| 50 case BaseTestServer::TYPE_HTTP: | 50 case BaseTestServer::TYPE_HTTP: |
| 51 case BaseTestServer::TYPE_HTTPS: | 51 case BaseTestServer::TYPE_HTTPS: |
| 52 return "http"; | 52 return "http"; |
| 53 case BaseTestServer::TYPE_WS: |
| 54 case BaseTestServer::TYPE_WSS: |
| 55 return "ws"; |
| 53 case BaseTestServer::TYPE_SYNC: | 56 case BaseTestServer::TYPE_SYNC: |
| 54 return "sync"; | 57 return "sync"; |
| 55 case BaseTestServer::TYPE_TCP_ECHO: | 58 case BaseTestServer::TYPE_TCP_ECHO: |
| 56 return "tcpecho"; | 59 return "tcpecho"; |
| 57 case BaseTestServer::TYPE_UDP_ECHO: | 60 case BaseTestServer::TYPE_UDP_ECHO: |
| 58 return "udpecho"; | 61 return "udpecho"; |
| 59 default: | 62 default: |
| 60 NOTREACHED(); | 63 NOTREACHED(); |
| 61 } | 64 } |
| 62 return std::string(); | 65 return std::string(); |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 | 178 |
| 176 SetResourcePath(document_root, FilePath().AppendASCII("net") | 179 SetResourcePath(document_root, FilePath().AppendASCII("net") |
| 177 .AppendASCII("data") | 180 .AppendASCII("data") |
| 178 .AppendASCII("ssl") | 181 .AppendASCII("ssl") |
| 179 .AppendASCII("certificates")); | 182 .AppendASCII("certificates")); |
| 180 return true; | 183 return true; |
| 181 } | 184 } |
| 182 | 185 |
| 183 } // namespace net | 186 } // namespace net |
| 184 | 187 |
| OLD | NEW |