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 #ifndef CHROME_BROWSER_PRERENDER_PRERENDER_FIELD_TRIAL_H_ | 5 #ifndef CHROME_BROWSER_PRERENDER_PRERENDER_FIELD_TRIAL_H_ |
6 #define CHROME_BROWSER_PRERENDER_PRERENDER_FIELD_TRIAL_H_ | 6 #define CHROME_BROWSER_PRERENDER_PRERENDER_FIELD_TRIAL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 class Profile; | 10 class Profile; |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 // be skipped, as indicated by the name. | 83 // be skipped, as indicated by the name. |
84 bool SkipLocalPredictorFragment(); | 84 bool SkipLocalPredictorFragment(); |
85 bool SkipLocalPredictorHTTPS(); | 85 bool SkipLocalPredictorHTTPS(); |
86 bool SkipLocalPredictorWhitelist(); | 86 bool SkipLocalPredictorWhitelist(); |
87 bool SkipLocalPredictorServiceWhitelist(); | 87 bool SkipLocalPredictorServiceWhitelist(); |
88 bool SkipLocalPredictorLoggedIn(); | 88 bool SkipLocalPredictorLoggedIn(); |
89 bool SkipLocalPredictorDefaultNoPrerender(); | 89 bool SkipLocalPredictorDefaultNoPrerender(); |
90 bool SkipLocalPredictorLocalCandidates(); | 90 bool SkipLocalPredictorLocalCandidates(); |
91 bool SkipLocalPredictorServiceCandidates(); | 91 bool SkipLocalPredictorServiceCandidates(); |
92 | 92 |
| 93 // Indicates whether no prerender cookie stores should be used for prerendering. |
| 94 bool IsPrerenderCookieStoreEnabled(); |
| 95 |
93 } // namespace prerender | 96 } // namespace prerender |
94 | 97 |
95 #endif // CHROME_BROWSER_PRERENDER_PRERENDER_FIELD_TRIAL_H_ | 98 #endif // CHROME_BROWSER_PRERENDER_PRERENDER_FIELD_TRIAL_H_ |
OLD | NEW |