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

Unified Diff: net/url_request/url_request_job_factory_impl_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
« no previous file with comments | « net/url_request/url_request_job.cc ('k') | net/url_request/url_request_job_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_job_factory_impl_unittest.cc
diff --git a/net/url_request/url_request_job_factory_impl_unittest.cc b/net/url_request/url_request_job_factory_impl_unittest.cc
index 2c7b3e2f2a528ba650bb8b05a4c672f72f82d1d4..235e3293d24a47f4b1920b6bd01ac15b1369c35d 100644
--- a/net/url_request/url_request_job_factory_impl_unittest.cc
+++ b/net/url_request/url_request_job_factory_impl_unittest.cc
@@ -63,7 +63,7 @@ TEST(URLRequestJobFactoryTest, NoProtocolHandler) {
TestDelegate delegate;
TestURLRequestContext request_context;
scoped_ptr<URLRequest> request(request_context.CreateRequest(
- GURL("foo://bar"), DEFAULT_PRIORITY, &delegate, NULL));
+ GURL("foo://bar"), DEFAULT_PRIORITY, &delegate));
request->Start();
base::MessageLoop::current()->Run();
@@ -78,7 +78,7 @@ TEST(URLRequestJobFactoryTest, BasicProtocolHandler) {
request_context.set_job_factory(&job_factory);
job_factory.SetProtocolHandler("foo", new DummyProtocolHandler);
scoped_ptr<URLRequest> request(request_context.CreateRequest(
- GURL("foo://bar"), DEFAULT_PRIORITY, &delegate, NULL));
+ GURL("foo://bar"), DEFAULT_PRIORITY, &delegate));
request->Start();
base::MessageLoop::current()->Run();
« no previous file with comments | « net/url_request/url_request_job.cc ('k') | net/url_request/url_request_job_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698