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

Unified Diff: chrome/browser/net/chrome_network_delegate_unittest.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: rebase (just in case since this is so huge) 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: chrome/browser/net/chrome_network_delegate_unittest.cc
diff --git a/chrome/browser/net/chrome_network_delegate_unittest.cc b/chrome/browser/net/chrome_network_delegate_unittest.cc
index 0550cde311fb83ead6914f777097914f69b020cd..3136bc7792e341a37571b740f1f8a34d418b9056 100644
--- a/chrome/browser/net/chrome_network_delegate_unittest.cc
+++ b/chrome/browser/net/chrome_network_delegate_unittest.cc
@@ -83,11 +83,11 @@ class ChromeNetworkDelegateThrottlingTest : public testing::Test {
net::TestURLRequestContext context;
scoped_ptr<net::URLRequest> extension_request(context.CreateRequest(
- GURL("http://example.com/"), net::DEFAULT_PRIORITY, NULL, NULL));
+ GURL("http://example.com/"), net::DEFAULT_PRIORITY, NULL));
extension_request->set_first_party_for_cookies(
GURL("chrome-extension://abcdef/bingo.html"));
scoped_ptr<net::URLRequest> web_page_request(context.CreateRequest(
- GURL("http://example.com/"), net::DEFAULT_PRIORITY, NULL, NULL));
+ GURL("http://example.com/"), net::DEFAULT_PRIORITY, NULL));
web_page_request->set_first_party_for_cookies(
GURL("http://example.com/helloworld.html"));
@@ -177,7 +177,7 @@ class ChromeNetworkDelegateSafeSearchTest : public testing::Test {
safe_search_util::ClearForceYouTubeSafetyModeCountForTesting();
scoped_ptr<net::URLRequest> request(context_.CreateRequest(
- GURL("http://anyurl.com"), net::DEFAULT_PRIORITY, &delegate_, NULL));
+ GURL("http://anyurl.com"), net::DEFAULT_PRIORITY, &delegate_));
request->Start();
base::MessageLoop::current()->RunUntilIdle();
« no previous file with comments | « chrome/browser/net/chrome_fraudulent_certificate_reporter_unittest.cc ('k') | chrome/browser/net/connection_tester.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698