| Index: chrome/browser/fast_shutdown_browsertest.cc
|
| diff --git a/chrome/browser/fast_shutdown_browsertest.cc b/chrome/browser/fast_shutdown_browsertest.cc
|
| index 33481c37a53ecd90f879f3c70806c55e0746f8d6..3a73d30a0a3748045d666af1a4842833a73598c5 100644
|
| --- a/chrome/browser/fast_shutdown_browsertest.cc
|
| +++ b/chrome/browser/fast_shutdown_browsertest.cc
|
| @@ -18,6 +18,7 @@
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/browser/notification_service.h"
|
| #include "content/public/test/browser_test_utils.h"
|
| +#include "net/test/embedded_test_server/embedded_test_server.h"
|
|
|
| using content::BrowserThread;
|
|
|
| @@ -41,9 +42,9 @@ class FastShutdown : public InProcessBrowserTest {
|
| IN_PROC_BROWSER_TEST_F(FastShutdown, DISABLED_SlowTermination) {
|
| // Need to run these tests on http:// since we only allow cookies on that (and
|
| // https obviously).
|
| - ASSERT_TRUE(test_server()->Start());
|
| + ASSERT_TRUE(embedded_test_server()->Start());
|
| // This page has an unload handler.
|
| - GURL url = test_server()->GetURL("files/fast_shutdown/on_unloader.html");
|
| + GURL url = embedded_test_server()->GetURL("/fast_shutdown/on_unloader.html");
|
| EXPECT_EQ("", content::GetCookies(browser()->profile(), url));
|
|
|
| content::WindowedNotificationObserver window_observer(
|
|
|