Index: chrome/browser/net/predictor.h |
diff --git a/chrome/browser/net/predictor.h b/chrome/browser/net/predictor.h |
index d1983e36f486e844e31edfd0ec5453cd35796fae..a2e5a2cda14c7070b26167c66e44cfdc40b5ec0a 100644 |
--- a/chrome/browser/net/predictor.h |
+++ b/chrome/browser/net/predictor.h |
@@ -243,12 +243,14 @@ 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); |
+ UrlInfo::ResolutionMotivation motivation, int count, |
+ bool isAnonymous = false); |
Ryan Sleevi
2015/05/12 15:43:20
Ditto STYLE concerns here in this file
|
void PreconnectUrlOnIOThread(const GURL& url, |
const GURL& first_party_for_cookies, |
UrlInfo::ResolutionMotivation motivation, |
- int count); |
+ int count, |
+ bool isAnonymous = false); |
// ------------- End IO thread methods. |