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

Unified Diff: net/websockets/websocket_end_to_end_test.cc

Issue 1003953008: Remove prerender cookie store, part 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@prerender-revert-cookie-store-3
Patch Set: Created 5 years, 9 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
Index: net/websockets/websocket_end_to_end_test.cc
diff --git a/net/websockets/websocket_end_to_end_test.cc b/net/websockets/websocket_end_to_end_test.cc
index 0304eb160c0369f9693295ee483049c35eee6010..b69f629271db0d99574e6be9f97d53c58ed53c1e 100644
--- a/net/websockets/websocket_end_to_end_test.cc
+++ b/net/websockets/websocket_end_to_end_test.cc
@@ -354,7 +354,7 @@ TEST_F(WebSocketEndToEndTest, DISABLED_ON_ANDROID(HttpsProxyUsed)) {
AuthCredentials(base::ASCIIToUTF16("foo"), base::ASCIIToUTF16("bar")));
{
scoped_ptr<URLRequest> request(
- context_.CreateRequest(http_page, DEFAULT_PRIORITY, &delegate, NULL));
+ context_.CreateRequest(http_page, DEFAULT_PRIORITY, &delegate));
request->Start();
// TestDelegate exits the message loop when the request completes by
// default.
@@ -400,7 +400,7 @@ TEST_F(WebSocketEndToEndTest, DISABLED_ON_ANDROID(HstsHttpsToWebSocket)) {
TestDelegate delegate;
GURL https_page = https_server.GetURL("files/hsts-headers.html");
scoped_ptr<URLRequest> request(
- context_.CreateRequest(https_page, DEFAULT_PRIORITY, &delegate, NULL));
+ context_.CreateRequest(https_page, DEFAULT_PRIORITY, &delegate));
request->Start();
// TestDelegate exits the message loop when the request completes.
base::RunLoop().Run();
@@ -433,7 +433,7 @@ TEST_F(WebSocketEndToEndTest, DISABLED_ON_ANDROID(HstsWebSocketToHttps)) {
GURL http_page =
ReplaceUrlScheme(https_server.GetURL("files/simple.html"), "http");
scoped_ptr<URLRequest> request(
- context_.CreateRequest(http_page, DEFAULT_PRIORITY, &delegate, NULL));
+ context_.CreateRequest(http_page, DEFAULT_PRIORITY, &delegate));
request->Start();
// TestDelegate exits the message loop when the request completes.
base::RunLoop().Run();

Powered by Google App Engine
This is Rietveld 408576698