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

Side by Side Diff: net/http/http_stream_factory_impl.h

Issue 1054413002: Remove the "alternate_url" outparam from (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix preconnect Created 5 years, 8 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 | « no previous file | net/http/http_stream_factory_impl.cc » ('j') | 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 #ifndef NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_ 5 #ifndef NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_
6 #define NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_ 6 #define NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <vector> 10 #include <vector>
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 68
69 HttpStreamRequest* RequestStreamInternal( 69 HttpStreamRequest* RequestStreamInternal(
70 const HttpRequestInfo& info, 70 const HttpRequestInfo& info,
71 RequestPriority priority, 71 RequestPriority priority,
72 const SSLConfig& server_ssl_config, 72 const SSLConfig& server_ssl_config,
73 const SSLConfig& proxy_ssl_config, 73 const SSLConfig& proxy_ssl_config,
74 HttpStreamRequest::Delegate* delegate, 74 HttpStreamRequest::Delegate* delegate,
75 WebSocketHandshakeStreamBase::CreateHelper* create_helper, 75 WebSocketHandshakeStreamBase::CreateHelper* create_helper,
76 const BoundNetLog& net_log); 76 const BoundNetLog& net_log);
77 77
78 AlternativeService GetAlternativeServiceRequestFor(const GURL& original_url, 78 AlternativeService GetAlternativeServiceFor(const GURL& original_url);
79 GURL* alternate_url);
80 79
81 // Detaches |job| from |request|. 80 // Detaches |job| from |request|.
82 void OrphanJob(Job* job, const Request* request); 81 void OrphanJob(Job* job, const Request* request);
83 82
84 // Called when a SpdySession is ready. It will find appropriate Requests and 83 // Called when a SpdySession is ready. It will find appropriate Requests and
85 // fulfill them. |direct| indicates whether or not |spdy_session| uses a 84 // fulfill them. |direct| indicates whether or not |spdy_session| uses a
86 // proxy. 85 // proxy.
87 void OnNewSpdySessionReady(const base::WeakPtr<SpdySession>& spdy_session, 86 void OnNewSpdySessionReady(const base::WeakPtr<SpdySession>& spdy_session,
88 bool direct, 87 bool direct,
89 const SSLConfig& used_ssl_config, 88 const SSLConfig& used_ssl_config,
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 // deleted when the factory is destroyed. 127 // deleted when the factory is destroyed.
129 std::set<const Job*> preconnect_job_set_; 128 std::set<const Job*> preconnect_job_set_;
130 129
131 const bool for_websockets_; 130 const bool for_websockets_;
132 DISALLOW_COPY_AND_ASSIGN(HttpStreamFactoryImpl); 131 DISALLOW_COPY_AND_ASSIGN(HttpStreamFactoryImpl);
133 }; 132 };
134 133
135 } // namespace net 134 } // namespace net
136 135
137 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_ 136 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | net/http/http_stream_factory_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698