| Index: chrome/browser/notifications/notifications_interactive_uitest.cc
|
| diff --git a/chrome/browser/notifications/notifications_interactive_uitest.cc b/chrome/browser/notifications/notifications_interactive_uitest.cc
|
| index 55d4a82383a878a1805cfbcb5a1260c046759c97..656017a63fe1c5d06a97ad1e564ee9bee0fa0460 100644
|
| --- a/chrome/browser/notifications/notifications_interactive_uitest.cc
|
| +++ b/chrome/browser/notifications/notifications_interactive_uitest.cc
|
| @@ -8,7 +8,7 @@
|
| #include "chrome/test/automation/tab_proxy.h"
|
| #include "chrome/test/ui/ui_test.h"
|
| #include "net/base/net_util.h"
|
| -#include "net/url_request/url_request_unittest.h"
|
| +#include "net/test/test_server.h"
|
|
|
| class NotificationsPermissionTest : public UITest {
|
| public:
|
| @@ -20,7 +20,8 @@ class NotificationsPermissionTest : public UITest {
|
|
|
| TEST_F(NotificationsPermissionTest, TestUserGestureInfobar) {
|
| 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(server.get() != NULL);
|
|
|
| scoped_refptr<BrowserProxy> browser(automation()->GetBrowserWindow(0));
|
| @@ -46,7 +47,8 @@ TEST_F(NotificationsPermissionTest, TestUserGestureInfobar) {
|
|
|
| TEST_F(NotificationsPermissionTest, TestNoUserGestureInfobar) {
|
| 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(server.get() != NULL);
|
|
|
| scoped_refptr<BrowserProxy> browser(automation()->GetBrowserWindow(0));
|
|
|