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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 content::WebContents* web_contents, | 115 content::WebContents* web_contents, |
116 const GURL& origin_url, | 116 const GURL& origin_url, |
117 const std::string& package_name_or_start_url, | 117 const std::string& package_name_or_start_url, |
118 AppBannerEvent event); | 118 AppBannerEvent event); |
119 | 119 |
120 // Set the engagement weights assigned to direct and indirect navigations. | 120 // Set the engagement weights assigned to direct and indirect navigations. |
121 // This is only exposed for testing. | 121 // This is only exposed for testing. |
122 static void SetEngagementWeights(double direct_engagement, | 122 static void SetEngagementWeights(double direct_engagement, |
123 double indirect_engagement); | 123 double indirect_engagement); |
124 | 124 |
| 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 |
| 127 // number of minutes in a day, and evenly divide the number of minutes |
| 128 // in a day. |
| 129 static void SetMinimumMinutesBetweenVisits(unsigned int minutes); |
| 130 |
| 131 // Bucket a given time to the given resolution in local time. |
| 132 static base::Time BucketTimeToResolution(base::Time time, |
| 133 unsigned int minutes); |
| 134 |
| 135 // Queries a field trial for updates to the default number of minutes between |
| 136 // site visits counted for the purposes of displaying a banner. |
| 137 static void UpdateMinutesBetweenVisits(); |
| 138 |
125 private: | 139 private: |
126 DISALLOW_IMPLICIT_CONSTRUCTORS(AppBannerSettingsHelper); | 140 DISALLOW_IMPLICIT_CONSTRUCTORS(AppBannerSettingsHelper); |
127 }; | 141 }; |
128 | 142 |
129 #endif // CHROME_BROWSER_BANNERS_APP_BANNER_SETTINGS_HELPER_H_ | 143 #endif // CHROME_BROWSER_BANNERS_APP_BANNER_SETTINGS_HELPER_H_ |
OLD | NEW |