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

Side by Side Diff: net/url_request/test_url_request_interceptor.cc

Issue 563173002: Cleanup: Use base/files/file_util.h instead of base/file_util.h in [c-n]*/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 unified diff | Download patch
« no previous file with comments | « net/test/url_request/url_request_mock_http_job.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/url_request/test_url_request_interceptor.h" 5 #include "net/url_request/test_url_request_interceptor.h"
6 6
7 #include "base/file_util.h" 7 #include "base/files/file_util.h"
8 #include "base/threading/sequenced_worker_pool.h" 8 #include "base/threading/sequenced_worker_pool.h"
9 #include "base/threading/thread_restrictions.h" 9 #include "base/threading/thread_restrictions.h"
10 #include "net/url_request/url_request.h" 10 #include "net/url_request/url_request.h"
11 #include "net/url_request/url_request_file_job.h" 11 #include "net/url_request/url_request_file_job.h"
12 #include "net/url_request/url_request_filter.h" 12 #include "net/url_request/url_request_filter.h"
13 #include "net/url_request/url_request_interceptor.h" 13 #include "net/url_request/url_request_interceptor.h"
14 #include "testing/gtest/include/gtest/gtest.h" 14 #include "testing/gtest/include/gtest/gtest.h"
15 15
16 namespace net { 16 namespace net {
17 17
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 LocalHostTestURLRequestInterceptor::LocalHostTestURLRequestInterceptor( 190 LocalHostTestURLRequestInterceptor::LocalHostTestURLRequestInterceptor(
191 const scoped_refptr<base::TaskRunner>& network_task_runner, 191 const scoped_refptr<base::TaskRunner>& network_task_runner,
192 const scoped_refptr<base::TaskRunner>& worker_task_runner) 192 const scoped_refptr<base::TaskRunner>& worker_task_runner)
193 : TestURLRequestInterceptor("http", 193 : TestURLRequestInterceptor("http",
194 "localhost", 194 "localhost",
195 network_task_runner, 195 network_task_runner,
196 worker_task_runner) { 196 worker_task_runner) {
197 } 197 }
198 198
199 } // namespace net 199 } // namespace net
OLDNEW
« no previous file with comments | « net/test/url_request/url_request_mock_http_job.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698