| Index: chrome/browser/browser_uitest.cc
|
| diff --git a/chrome/browser/browser_uitest.cc b/chrome/browser/browser_uitest.cc
|
| index d1976bea696d78c410c3a85e9e2e821a4a1f7418..404edd8df8089a1243b06ca3cc2e39e9061415a5 100644
|
| --- a/chrome/browser/browser_uitest.cc
|
| +++ b/chrome/browser/browser_uitest.cc
|
| @@ -2,8 +2,10 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include "base/base_paths.h"
|
| #include "base/file_path.h"
|
| #include "base/file_util.h"
|
| +#include "base/path_service.h"
|
| #include "base/string_util.h"
|
| #include "base/sys_info.h"
|
| #include "base/test/test_file_util.h"
|
| @@ -22,7 +24,7 @@
|
| #include "grit/chromium_strings.h"
|
| #include "grit/generated_resources.h"
|
| #include "net/base/net_util.h"
|
| -#include "net/url_request/url_request_unittest.h"
|
| +#include "net/test/test_server.h"
|
|
|
| namespace {
|
|
|
| @@ -136,7 +138,8 @@ TEST_F(BrowserTest, MAYBE_OtherRedirectsDontForkProcess) {
|
| return;
|
|
|
| const wchar_t kDocRoot[] = L"chrome/test/data";
|
| - scoped_refptr<HTTPTestServer> server(HTTPTestServer::CreateServer(kDocRoot));
|
| + scoped_refptr<net::HTTPTestServer> server(
|
| + net::HTTPTestServer::CreateServer(kDocRoot));
|
| ASSERT_TRUE(NULL != server.get());
|
| FilePath test_file(test_data_directory_);
|
| scoped_refptr<BrowserProxy> window(automation()->GetBrowserWindow(0));
|
|
|