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

Side by Side Diff: chrome/browser/background/background_mode_manager_factory.cc

Issue 8763011: Remove dangling files and clean up gyp. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011 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/background/background_mode_manager_factory.h"
6
7 #include "base/command_line.h"
8 #include "chrome/browser/background/background_mode_manager.h"
9 #include "chrome/browser/profiles/profile.h"
10 #include "chrome/browser/profiles/profile_dependency_manager.h"
11
12 // static
13 BackgroundModeManager* BackgroundModeManagerFactory::GetForProfile(
14 Profile* profile) {
15 return static_cast<BackgroundModeManager*>(
16 GetInstance()->GetServiceForProfile(profile, true));
17 }
18
19 // static
20 BackgroundModeManagerFactory* BackgroundModeManagerFactory::GetInstance() {
21 return Singleton<BackgroundModeManagerFactory>::get();
22 }
23
24 BackgroundModeManagerFactory::BackgroundModeManagerFactory()
25 : ProfileKeyedServiceFactory(ProfileDependencyManager::GetInstance()) {
26 }
27
28 BackgroundModeManagerFactory::~BackgroundModeManagerFactory() {
29 }
30
31 ProfileKeyedService* BackgroundModeManagerFactory::BuildServiceInstanceFor(
32 Profile* profile) const {
33 return new BackgroundModeManager(profile, CommandLine::ForCurrentProcess());
34 }
OLDNEW
« no previous file with comments | « chrome/browser/background/background_mode_manager_factory.h ('k') | chrome/browser/gpu_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698