OLD | NEW |
---|---|
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 // A Preconnect instance maintains state while a TCP/IP connection is made, and | 5 // A Preconnect instance maintains state while a TCP/IP connection is made, and |
6 // and then released into the pool of available connections for future use. | 6 // and then released into the pool of available connections for future use. |
7 | 7 |
8 #ifndef CHROME_BROWSER_NET_PRECONNECT_H_ | 8 #ifndef CHROME_BROWSER_NET_PRECONNECT_H_ |
9 #define CHROME_BROWSER_NET_PRECONNECT_H_ | 9 #define CHROME_BROWSER_NET_PRECONNECT_H_ |
10 | 10 |
(...skipping 16 matching lines...) Expand all Loading... | |
27 int count, | 27 int count, |
28 net::URLRequestContextGetter* getter); | 28 net::URLRequestContextGetter* getter); |
29 | 29 |
30 // Try to preconnect. Typically used by predictor when a subresource probably | 30 // Try to preconnect. Typically used by predictor when a subresource probably |
31 // needs a connection. |count| may be used to request more than one connection | 31 // needs a connection. |count| may be used to request more than one connection |
32 // be established in parallel. | 32 // be established in parallel. |
33 void PreconnectOnIOThread(const GURL& url, | 33 void PreconnectOnIOThread(const GURL& url, |
34 const GURL& first_party_for_cookies, | 34 const GURL& first_party_for_cookies, |
35 UrlInfo::ResolutionMotivation motivation, | 35 UrlInfo::ResolutionMotivation motivation, |
36 int count, | 36 int count, |
37 net::URLRequestContextGetter* getter); | 37 net::URLRequestContextGetter* getter, |
38 bool allow_credentials); | |
Ryan Sleevi
2015/07/10 09:46:45
Wondering out loud (for Matt, mostly) - do we want
| |
38 | 39 |
39 } // namespace chrome_browser_net | 40 } // namespace chrome_browser_net |
40 | 41 |
41 #endif // CHROME_BROWSER_NET_PRECONNECT_H_ | 42 #endif // CHROME_BROWSER_NET_PRECONNECT_H_ |
OLD | NEW |