OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_BANNERS_APP_BANNER_SETTINGS_HELPER_H_ | 5 #ifndef CHROME_BROWSER_BANNERS_APP_BANNER_SETTINGS_HELPER_H_ |
6 #define CHROME_BROWSER_BANNERS_APP_BANNER_SETTINGS_HELPER_H_ | 6 #define CHROME_BROWSER_BANNERS_APP_BANNER_SETTINGS_HELPER_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 // Set the minimum number of minutes between banner visits that will | 125 // Set the minimum number of minutes between banner visits that will |
126 // trigger a could show banner event. This must be less than the | 126 // trigger a could show banner event. This must be less than the |
127 // number of minutes in a day, and evenly divide the number of minutes | 127 // number of minutes in a day, and evenly divide the number of minutes |
128 // in a day. | 128 // in a day. |
129 static void SetMinimumMinutesBetweenVisits(unsigned int minutes); | 129 static void SetMinimumMinutesBetweenVisits(unsigned int minutes); |
130 | 130 |
131 // Bucket a given time to the given resolution in local time. | 131 // Bucket a given time to the given resolution in local time. |
132 static base::Time BucketTimeToResolution(base::Time time, | 132 static base::Time BucketTimeToResolution(base::Time time, |
133 unsigned int minutes); | 133 unsigned int minutes); |
134 | 134 |
| 135 // Queries a field trial for updates to the default engagement values assigned |
| 136 // to direct and indirect navigations. |
| 137 static void UpdateEngagementWeights(); |
| 138 |
135 // Queries a field trial for updates to the default number of minutes between | 139 // Queries a field trial for updates to the default number of minutes between |
136 // site visits counted for the purposes of displaying a banner. | 140 // site visits counted for the purposes of displaying a banner. |
137 static void UpdateMinutesBetweenVisits(); | 141 static void UpdateMinutesBetweenVisits(); |
138 | 142 |
| 143 // Updates all values from field trial. |
| 144 static void UpdateFromFieldTrial(); |
| 145 |
139 private: | 146 private: |
140 DISALLOW_IMPLICIT_CONSTRUCTORS(AppBannerSettingsHelper); | 147 DISALLOW_IMPLICIT_CONSTRUCTORS(AppBannerSettingsHelper); |
141 }; | 148 }; |
142 | 149 |
143 #endif // CHROME_BROWSER_BANNERS_APP_BANNER_SETTINGS_HELPER_H_ | 150 #endif // CHROME_BROWSER_BANNERS_APP_BANNER_SETTINGS_HELPER_H_ |
OLD | NEW |