Chromium Code Reviews| Index: chrome/browser/net/predictor.h |
| diff --git a/chrome/browser/net/predictor.h b/chrome/browser/net/predictor.h |
| index d1983e36f486e844e31edfd0ec5453cd35796fae..c3ae85d3ae73db4a4593ec42a929c141965606e1 100644 |
| --- a/chrome/browser/net/predictor.h |
| +++ b/chrome/browser/net/predictor.h |
| @@ -242,13 +242,17 @@ class Predictor { |
| // May be called from either the IO or UI thread and will PostTask |
| // to the IO thread if necessary. |
| - void PreconnectUrl(const GURL& url, const GURL& first_party_for_cookies, |
| - UrlInfo::ResolutionMotivation motivation, int count); |
| + void PreconnectUrl(const GURL& url, |
| + const GURL& first_party_for_cookies, |
| + UrlInfo::ResolutionMotivation motivation, |
| + int count, |
| + bool allow_credentials); |
|
jochen (gone - plz use gerrit)
2015/07/22 09:35:03
the ipc message has the bool first, then the count
|
| void PreconnectUrlOnIOThread(const GURL& url, |
| const GURL& first_party_for_cookies, |
| UrlInfo::ResolutionMotivation motivation, |
| - int count); |
| + int count, |
| + bool allow_credentials); |
| // ------------- End IO thread methods. |