| Index: webkit/glue/unittest_test_server.h
|
| ===================================================================
|
| --- webkit/glue/unittest_test_server.h (revision 9822)
|
| +++ webkit/glue/unittest_test_server.h (working copy)
|
| @@ -22,7 +22,10 @@
|
| public:
|
| static UnittestTestServer* CreateServer() {
|
| UnittestTestServer* test_server = new UnittestTestServer();
|
| - if (!test_server->Init("localhost", 1337, L"webkit/data")) {
|
| + FilePath no_cert;
|
| + FilePath docroot = FilePath::FromWStringHack(L"webkit/data");
|
| + if (!test_server->Start(net::TestServerLauncher::ProtoHTTP,
|
| + "localhost", 1337, docroot, no_cert)) {
|
| delete test_server;
|
| return NULL;
|
| }
|
|
|