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

Unified Diff: net/test/remote_test_server.cc

Issue 10878003: Refactoring for merging WebSocket test server to net::TestServer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: reflect Ryan's review Created 8 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: net/test/remote_test_server.cc
diff --git a/net/test/remote_test_server.cc b/net/test/remote_test_server.cc
index f9fc969600d101df45395edc358efc63de6e1a24..178b174d260a7356db5eef1c2d4ec724c4004f39 100644
--- a/net/test/remote_test_server.cc
+++ b/net/test/remote_test_server.cc
@@ -63,10 +63,10 @@ RemoteTestServer::RemoteTestServer(Type type,
NOTREACHED();
}
-RemoteTestServer::RemoteTestServer(
- const HTTPSOptions& https_options,
- const FilePath& document_root)
- : BaseTestServer(https_options),
+RemoteTestServer::RemoteTestServer(Type type,
+ const SSLOptions& ssl_options,
+ const FilePath& document_root)
+ : BaseTestServer(type, ssl_options),
spawner_server_port_(0) {
if (!Init(document_root))
NOTREACHED();

Powered by Google App Engine
This is Rietveld 408576698