| 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 // Updates all values from field trial. | 135 // Queries a field trial for updates to the default number of minutes between |
| 136 static void UpdateFromFieldTrial(); | 136 // site visits counted for the purposes of displaying a banner. |
| 137 static void UpdateMinutesBetweenVisits(); |
| 137 | 138 |
| 138 private: | 139 private: |
| 139 DISALLOW_IMPLICIT_CONSTRUCTORS(AppBannerSettingsHelper); | 140 DISALLOW_IMPLICIT_CONSTRUCTORS(AppBannerSettingsHelper); |
| 140 }; | 141 }; |
| 141 | 142 |
| 142 #endif // CHROME_BROWSER_BANNERS_APP_BANNER_SETTINGS_HELPER_H_ | 143 #endif // CHROME_BROWSER_BANNERS_APP_BANNER_SETTINGS_HELPER_H_ |
| OLD | NEW |