Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(109)

Side by Side Diff: net/test/remote_test_server.cc

Issue 10073033: Run safebrowsing_service_test through the net testserver code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/file_util.h" 9 #include "base/file_util.h"
10 #include "base/json/json_writer.h" 10 #include "base/json/json_writer.h"
(...skipping 28 matching lines...) Expand all
39 case BaseTestServer::TYPE_GDATA: 39 case BaseTestServer::TYPE_GDATA:
40 case BaseTestServer::TYPE_HTTP: 40 case BaseTestServer::TYPE_HTTP:
41 case BaseTestServer::TYPE_HTTPS: 41 case BaseTestServer::TYPE_HTTPS:
42 return "http"; 42 return "http";
43 case BaseTestServer::TYPE_SYNC: 43 case BaseTestServer::TYPE_SYNC:
44 return "sync"; 44 return "sync";
45 case BaseTestServer::TYPE_TCP_ECHO: 45 case BaseTestServer::TYPE_TCP_ECHO:
46 return "tcpecho"; 46 return "tcpecho";
47 case BaseTestServer::TYPE_UDP_ECHO: 47 case BaseTestServer::TYPE_UDP_ECHO:
48 return "udpecho"; 48 return "udpecho";
49 case BaseTestServer::TYPE_SAFEBROWSING:
Paweł Hajdan Jr. 2012/04/17 06:38:05 nit: Keep this sorted.
mattm 2012/04/18 00:20:00 Done.
50 return "safebrowsing";
49 default: 51 default:
50 NOTREACHED(); 52 NOTREACHED();
51 } 53 }
52 return std::string(); 54 return std::string();
53 } 55 }
54 56
55 } // namespace 57 } // namespace
56 58
57 RemoteTestServer::RemoteTestServer(Type type, 59 RemoteTestServer::RemoteTestServer(Type type,
58 const std::string& host, 60 const std::string& host,
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 SetPort(test_server_port); 166 SetPort(test_server_port);
165 167
166 SetResourcePath(document_root, FilePath().AppendASCII("net") 168 SetResourcePath(document_root, FilePath().AppendASCII("net")
167 .AppendASCII("data") 169 .AppendASCII("data")
168 .AppendASCII("ssl") 170 .AppendASCII("ssl")
169 .AppendASCII("certificates")); 171 .AppendASCII("certificates"));
170 return true; 172 return true;
171 } 173 }
172 174
173 } // namespace net 175 } // namespace net
174
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698