Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1342)

Unified Diff: chrome/browser/collected_cookies_uitest.cc

Issue 9372065: Update clients to use new TestServer constructor. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Remove files that were reviewed and committed separately. Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/custom_handlers/custom_handlers_uitest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/collected_cookies_uitest.cc
diff --git a/chrome/browser/collected_cookies_uitest.cc b/chrome/browser/collected_cookies_uitest.cc
index 0612a09a5ab7bb5fa4d321d6da85a505fbc0f635..c13a0743a0116b86c1a5cc119ee8a163dd1f55f8 100644
--- a/chrome/browser/collected_cookies_uitest.cc
+++ b/chrome/browser/collected_cookies_uitest.cc
@@ -28,7 +28,9 @@ typedef UITest CollectedCookiesTest;
#define MAYBE_DoubleDisplay DoubleDisplay
#endif
TEST_F(CollectedCookiesTest, MAYBE_DoubleDisplay) {
- net::TestServer test_server(net::TestServer::TYPE_HTTP, FilePath(kDocRoot));
+ net::TestServer test_server(net::TestServer::TYPE_HTTP,
+ net::TestServer::kLocalhost,
+ FilePath(kDocRoot));
ASSERT_TRUE(test_server.Start());
scoped_refptr<BrowserProxy> browser(automation()->GetBrowserWindow(0));
@@ -56,7 +58,9 @@ TEST_F(CollectedCookiesTest, MAYBE_DoubleDisplay) {
#define MAYBE_NavigateAway NavigateAway
#endif
TEST_F(CollectedCookiesTest, MAYBE_NavigateAway) {
- net::TestServer test_server(net::TestServer::TYPE_HTTP, FilePath(kDocRoot));
+ net::TestServer test_server(net::TestServer::TYPE_HTTP,
+ net::TestServer::kLocalhost,
+ FilePath(kDocRoot));
ASSERT_TRUE(test_server.Start());
scoped_refptr<BrowserProxy> browser(automation()->GetBrowserWindow(0));
« no previous file with comments | « no previous file | chrome/browser/custom_handlers/custom_handlers_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698