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

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

Issue 1969043002: Fix include path for moved thread_task_runner_handle.h header in net/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: Created 4 years, 7 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
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/url_request_ftp_job.h" 5 #include "net/url_request/url_request_ftp_job.h"
6 6
7 #include "base/compiler_specific.h" 7 #include "base/compiler_specific.h"
8 #include "base/location.h" 8 #include "base/location.h"
9 #include "base/single_thread_task_runner.h" 9 #include "base/single_thread_task_runner.h"
10 #include "base/strings/utf_string_conversions.h" 10 #include "base/strings/utf_string_conversions.h"
11 #include "base/thread_task_runner_handle.h" 11 #include "base/threading/thread_task_runner_handle.h"
12 #include "net/base/auth.h" 12 #include "net/base/auth.h"
13 #include "net/base/host_port_pair.h" 13 #include "net/base/host_port_pair.h"
14 #include "net/base/load_flags.h" 14 #include "net/base/load_flags.h"
15 #include "net/base/net_errors.h" 15 #include "net/base/net_errors.h"
16 #include "net/ftp/ftp_auth_cache.h" 16 #include "net/ftp/ftp_auth_cache.h"
17 #include "net/ftp/ftp_response_info.h" 17 #include "net/ftp/ftp_response_info.h"
18 #include "net/ftp/ftp_transaction_factory.h" 18 #include "net/ftp/ftp_transaction_factory.h"
19 #include "net/http/http_response_headers.h" 19 #include "net/http/http_response_headers.h"
20 #include "net/http/http_transaction_factory.h" 20 #include "net/http/http_transaction_factory.h"
21 #include "net/url_request/url_request.h" 21 #include "net/url_request/url_request.h"
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 if (cached_auth) { 372 if (cached_auth) {
373 // Retry using cached auth data. 373 // Retry using cached auth data.
374 SetAuth(cached_auth->credentials); 374 SetAuth(cached_auth->credentials);
375 } else { 375 } else {
376 // Prompt for a username/password. 376 // Prompt for a username/password.
377 NotifyHeadersComplete(); 377 NotifyHeadersComplete();
378 } 378 }
379 } 379 }
380 380
381 } // namespace net 381 } // namespace net
OLDNEW
« no previous file with comments | « net/url_request/url_request_file_job_unittest.cc ('k') | net/url_request/url_request_http_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698