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

Unified Diff: chrome/browser/push_messaging/background_budget_service_factory.cc

Issue 1889513004: Make BackgroundBudgetService a KeyedService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ses_integration
Patch Set: Apply diffs to master branch to remove SES dependency 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
Index: chrome/browser/push_messaging/background_budget_service_factory.cc
diff --git a/chrome/browser/push_messaging/background_budget_service_factory.cc b/chrome/browser/push_messaging/background_budget_service_factory.cc
new file mode 100644
index 0000000000000000000000000000000000000000..618e77523232af28326da5cbfa70347f7ba62193
--- /dev/null
+++ b/chrome/browser/push_messaging/background_budget_service_factory.cc
@@ -0,0 +1,39 @@
+// 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.
+
+#include "chrome/browser/push_messaging/background_budget_service_factory.h"
+
+#include "chrome/browser/engagement/site_engagement_service_factory.h"
+#include "chrome/browser/profiles/profile.h"
+#include "chrome/browser/push_messaging/background_budget_service.h"
+#include "components/keyed_service/content/browser_context_dependency_manager.h"
+#include "content/public/browser/browser_context.h"
+
+// static
+BackgroundBudgetService* BackgroundBudgetServiceFactory::GetForProfile(
+ content::BrowserContext* profile) {
+ // Budget tracking is not supported in incognito mode.
+ if (profile->IsOffTheRecord())
Peter Beverloo 2016/04/15 12:22:24 Why not? The dependency (SiteEngagementServiceFact
+ return nullptr;
+
+ return static_cast<BackgroundBudgetService*>(
+ GetInstance()->GetServiceForBrowserContext(profile, true));
+}
+
+// static
+BackgroundBudgetServiceFactory* BackgroundBudgetServiceFactory::GetInstance() {
+ return base::Singleton<BackgroundBudgetServiceFactory>::get();
+}
+
+BackgroundBudgetServiceFactory::BackgroundBudgetServiceFactory()
+ : BrowserContextKeyedServiceFactory(
+ "BackgroundBudgetService",
+ BrowserContextDependencyManager::GetInstance()) {
+ DependsOn(SiteEngagementServiceFactory::GetInstance());
+}
+
+KeyedService* BackgroundBudgetServiceFactory::BuildServiceInstanceFor(
+ content::BrowserContext* profile) const {
+ return new BackgroundBudgetService(static_cast<Profile*>(profile));
+}

Powered by Google App Engine
This is Rietveld 408576698