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

Side by Side Diff: chrome/browser/prerender/prerender_field_trial.h

Issue 13903018: Add the LoggedIn Predictor, to detect which websites a user is likely (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: line break Created 7 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 | Annotate | Revision Log
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 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 CommandLine; 10 class CommandLine;
11 class Profile; 11 class Profile;
12 12
13 namespace prerender { 13 namespace prerender {
14 14
15 // Parse the --prerender= command line switch, which controls both prerendering 15 // Parse the --prerender= command line switch, which controls both prerendering
16 // and prefetching. If the switch is unset, or is set to "auto", then the user 16 // and prefetching. If the switch is unset, or is set to "auto", then the user
17 // is assigned to a field trial. 17 // is assigned to a field trial.
18 void ConfigurePrefetchAndPrerender(const CommandLine& command_line); 18 void ConfigurePrefetchAndPrerender(const CommandLine& command_line);
19 19
20 // Returns true if the user has opted in or has been opted in to the 20 // Returns true if the user has opted in or has been opted in to the
21 // prerendering from Omnibox experiment. 21 // prerendering from Omnibox experiment.
22 bool IsOmniboxEnabled(Profile* profile); 22 bool IsOmniboxEnabled(Profile* profile);
23 23
24 // Returns true iff the Prerender Local Predictor is enabled. 24 // Returns true iff the Prerender Local Predictor is enabled.
25 bool IsLocalPredictorEnabled(); 25 bool IsLocalPredictorEnabled();
26 26
27 // Returns true iff the LoggedIn Predictor is enabled.
28 bool IsLoggedInPredictorEnabled();
29
27 } // namespace prerender 30 } // namespace prerender
28 31
29 #endif // CHROME_BROWSER_PRERENDER_PRERENDER_FIELD_TRIAL_H_ 32 #endif // CHROME_BROWSER_PRERENDER_PRERENDER_FIELD_TRIAL_H_
OLDNEW
« no previous file with comments | « chrome/browser/predictors/predictor_database.cc ('k') | chrome/browser/prerender/prerender_field_trial.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698