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

Side by Side Diff: chrome/browser/media/media_engagement_service_factory.cc

Issue 2840813002: Media Engagement: implement shell of the media engagement service. (Closed)
Patch Set: rebase Created 3 years, 7 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/media/media_engagement_service_factory.h"
6
7 #include "chrome/browser/media/media_engagement_service.h"
8 #include "chrome/browser/profiles/incognito_helpers.h"
9 #include "chrome/browser/profiles/profile.h"
10 #include "components/keyed_service/content/browser_context_dependency_manager.h"
11
12 // static
13 MediaEngagementService* MediaEngagementServiceFactory::GetForProfile(
14 Profile* profile) {
15 return static_cast<MediaEngagementService*>(
16 GetInstance()->GetServiceForBrowserContext(profile, true));
17 }
18
19 // static
20 MediaEngagementServiceFactory* MediaEngagementServiceFactory::GetInstance() {
21 return base::Singleton<MediaEngagementServiceFactory>::get();
22 }
23
24 MediaEngagementServiceFactory::MediaEngagementServiceFactory()
25 : BrowserContextKeyedServiceFactory(
26 "MediaEngagementServiceFactory",
27 BrowserContextDependencyManager::GetInstance()) {}
28
29 MediaEngagementServiceFactory::~MediaEngagementServiceFactory() {}
30
31 KeyedService* MediaEngagementServiceFactory::BuildServiceInstanceFor(
32 content::BrowserContext* context) const {
33 return new MediaEngagementService(Profile::FromBrowserContext(context));
34 }
35
36 content::BrowserContext* MediaEngagementServiceFactory::GetBrowserContextToUse(
37 content::BrowserContext* context) const {
38 return chrome::GetBrowserContextOwnInstanceInIncognito(context);
39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698