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

Unified Diff: chrome/browser/push_messaging/background_budget_service.h

Issue 1861683002: Background service worker push message processing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: dcheck ordering Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/prefs/browser_prefs.cc ('k') | chrome/browser/push_messaging/background_budget_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/push_messaging/background_budget_service.h
diff --git a/chrome/browser/push_messaging/background_budget_service.h b/chrome/browser/push_messaging/background_budget_service.h
new file mode 100644
index 0000000000000000000000000000000000000000..d9c8411a61c3601664ab44396b45b32654ec744a
--- /dev/null
+++ b/chrome/browser/push_messaging/background_budget_service.h
@@ -0,0 +1,43 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_PUSH_MESSAGING_BACKGROUND_BUDGET_SERVICE_H_
+#define CHROME_BROWSER_PUSH_MESSAGING_BACKGROUND_BUDGET_SERVICE_H_
+
+#include <string>
+
+#include "base/callback_forward.h"
+#include "url/gurl.h"
+
+class Profile;
+
+namespace user_prefs {
+class PrefRegistrySyncable;
+}
+
+// A budget service to help Chrome decide how much background work a service
+// worker should be able to do on behalf of the user. The budget currently
+// implements a grace period of 1 non-visual notification in 10.
+class BackgroundBudgetService {
+ public:
+ static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
+
+ // Get the budget associated with the origin. This currently tracks a string
+ // which holds 0 and 1 for the last 10 push messages and whether they
+ // triggered a visual notification.
+ static std::string GetBudget(Profile* profile, const GURL& origin);
+
+ // Store the budget associated with the origin. notifications_shown is
+ // expected to be a string encoding whether the last 10 push messages
+ // triggered
+ // a visual notification.
+ static void StoreBudget(Profile* profile,
+ const GURL& origin,
+ const std::string& notifications_shown);
+
+ private:
+ DISALLOW_IMPLICIT_CONSTRUCTORS(BackgroundBudgetService);
+};
+
+#endif // CHROME_BROWSER_PUSH_MESSAGING_BACKGROUND_BUDGET_SERVICE_H_
« no previous file with comments | « chrome/browser/prefs/browser_prefs.cc ('k') | chrome/browser/push_messaging/background_budget_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698