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

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

Issue 332313003: Add Finch experiment for selectively bypassing proxies. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: callback design (not yet done) Created 6 years, 6 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/message_loop/message_loop.h" 8 #include "base/message_loop/message_loop.h"
9 #include "base/strings/utf_string_conversions.h" 9 #include "base/strings/utf_string_conversions.h"
10 #include "net/base/auth.h" 10 #include "net/base/auth.h"
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 DCHECK(!ftp_transaction_); 95 DCHECK(!ftp_transaction_);
96 DCHECK(!http_transaction_); 96 DCHECK(!http_transaction_);
97 97
98 int rv = OK; 98 int rv = OK;
99 if (request_->load_flags() & LOAD_BYPASS_PROXY) { 99 if (request_->load_flags() & LOAD_BYPASS_PROXY) {
100 proxy_info_.UseDirect(); 100 proxy_info_.UseDirect();
101 } else { 101 } else {
102 DCHECK_EQ(request_->context()->proxy_service(), proxy_service_); 102 DCHECK_EQ(request_->context()->proxy_service(), proxy_service_);
103 rv = proxy_service_->ResolveProxy( 103 rv = proxy_service_->ResolveProxy(
104 request_->url(), 104 request_->url(),
105 request_->load_flags(),
105 &proxy_info_, 106 &proxy_info_,
106 base::Bind(&URLRequestFtpJob::OnResolveProxyComplete, 107 base::Bind(&URLRequestFtpJob::OnResolveProxyComplete,
107 base::Unretained(this)), 108 base::Unretained(this)),
108 &pac_request_, 109 &pac_request_,
109 request_->net_log()); 110 request_->net_log());
110 111
111 if (rv == ERR_IO_PENDING) 112 if (rv == ERR_IO_PENDING)
112 return; 113 return;
113 } 114 }
114 OnResolveProxyComplete(rv); 115 OnResolveProxyComplete(rv);
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
398 if (cached_auth) { 399 if (cached_auth) {
399 // Retry using cached auth data. 400 // Retry using cached auth data.
400 SetAuth(cached_auth->credentials); 401 SetAuth(cached_auth->credentials);
401 } else { 402 } else {
402 // Prompt for a username/password. 403 // Prompt for a username/password.
403 NotifyHeadersComplete(); 404 NotifyHeadersComplete();
404 } 405 }
405 } 406 }
406 407
407 } // namespace net 408 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698