| Index: chrome/test/layout_test_http_server.cc
 | 
| diff --git a/chrome/test/layout_test_http_server.cc b/chrome/test/layout_test_http_server.cc
 | 
| index 34c79ab6d0fd0ddd0e4b462592af5d318d64b036..b1ad42e6361c30471a31535017ffce4a5578ce9f 100644
 | 
| --- a/chrome/test/layout_test_http_server.cc
 | 
| +++ b/chrome/test/layout_test_http_server.cc
 | 
| @@ -87,7 +87,7 @@ bool LayoutTestHttpServer::Start() {
 | 
|    // continuing.
 | 
|    base::LaunchOptions options;
 | 
|    options.wait = true;
 | 
| -  running_ = base::LaunchProcess(cmd_line, options);
 | 
| +  running_ = base::LaunchProcess(cmd_line, options, NULL);
 | 
|    return running_;
 | 
|  }
 | 
|  
 | 
| @@ -104,7 +104,7 @@ bool LayoutTestHttpServer::Stop() {
 | 
|  
 | 
|    base::LaunchOptions options;
 | 
|    options.wait = true;
 | 
| -  bool stopped = base::LaunchProcess(cmd_line, options);
 | 
| +  bool stopped = base::LaunchProcess(cmd_line, options, NULL);
 | 
|    running_ = !stopped;
 | 
|    return stopped;
 | 
|  }
 | 
| 
 |