Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_PUSH_MESSAGING_BACKGROUND_BUDGET_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_PUSH_MESSAGING_BACKGROUND_BUDGET_SERVICE_H_ |
| 6 #define CHROME_BROWSER_PUSH_MESSAGING_BACKGROUND_BUDGET_SERVICE_H_ | 6 #define CHROME_BROWSER_PUSH_MESSAGING_BACKGROUND_BUDGET_SERVICE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/callback_forward.h" | |
| 11 #include "url/gurl.h" | 10 #include "url/gurl.h" |
| 12 | 11 |
| 13 class Profile; | 12 class Profile; |
| 14 | 13 |
| 15 namespace user_prefs { | 14 namespace user_prefs { |
| 16 class PrefRegistrySyncable; | 15 class PrefRegistrySyncable; |
| 17 } | 16 } |
| 18 | 17 |
| 19 // A budget service to help Chrome decide how much background work a service | 18 // A budget service to help Chrome decide how much background work a service |
| 20 // worker should be able to do on behalf of the user. The budget currently | 19 // worker should be able to do on behalf of the user. The budget is calculated |
| 21 // implements a grace period of 1 non-visual notification in 10. | 20 // based on the Site Engagment Score and is consumed when a service worker |
| 21 // doesn't show a notification when it needed to. | |
| 22 class BackgroundBudgetService { | 22 class BackgroundBudgetService { |
| 23 public: | 23 public: |
| 24 static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry); | 24 static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry); |
| 25 | 25 |
| 26 // Get the budget associated with the origin. This currently tracks a string | 26 // Get the budget associated with the origin. This is returned as the double |
| 27 // which holds 0 and 1 for the last 10 push messages and whether they | 27 // budget. |
| 28 // triggered a visual notification. | 28 static void GetBudget(Profile* profile, const GURL& origin, double& budget); |
|
Peter Beverloo
2016/04/14 18:02:09
Can we return the double instead? If you do decide
harkness
2016/04/27 11:21:08
Done.
| |
| 29 static std::string GetBudget(Profile* profile, const GURL& origin); | |
| 30 | 29 |
| 31 // Store the budget associated with the origin. notifications_shown is | 30 // Store the budget associated with the origin. |
|
Peter Beverloo
2016/04/14 18:02:09
This method, as well as GetBudget(), should docume
harkness
2016/04/27 11:21:08
Done. I capped it at 0.0 to the max value of SES.
| |
| 32 // expected to be a string encoding whether the last 10 push messages | |
| 33 // triggered | |
| 34 // a visual notification. | |
| 35 static void StoreBudget(Profile* profile, | 31 static void StoreBudget(Profile* profile, |
| 36 const GURL& origin, | 32 const GURL& origin, |
| 37 const std::string& notifications_shown); | 33 const double budget); |
| 38 | 34 |
| 39 private: | 35 private: |
| 40 DISALLOW_IMPLICIT_CONSTRUCTORS(BackgroundBudgetService); | 36 DISALLOW_IMPLICIT_CONSTRUCTORS(BackgroundBudgetService); |
| 41 }; | 37 }; |
| 42 | 38 |
| 43 #endif // CHROME_BROWSER_PUSH_MESSAGING_BACKGROUND_BUDGET_SERVICE_H_ | 39 #endif // CHROME_BROWSER_PUSH_MESSAGING_BACKGROUND_BUDGET_SERVICE_H_ |
| OLD | NEW |