summaryrefslogtreecommitdiffstats
path: root/apps/saved_files_service_factory.cc
blob: 9d813bf841a945da664be2efdc175b013b16662f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright 2013 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 "apps/saved_files_service_factory.h"

#include "apps/saved_files_service.h"
#include "chrome/browser/profiles/profile.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"

namespace apps {

// static
SavedFilesService* SavedFilesServiceFactory::GetForProfile(Profile* profile) {
  return static_cast<SavedFilesService*>(
      GetInstance()->GetServiceForBrowserContext(profile, true));
}

// static
SavedFilesServiceFactory* SavedFilesServiceFactory::GetInstance() {
  return base::Singleton<SavedFilesServiceFactory>::get();
}

SavedFilesServiceFactory::SavedFilesServiceFactory()
    : BrowserContextKeyedServiceFactory(
          "SavedFilesService",
          BrowserContextDependencyManager::GetInstance()) {}

SavedFilesServiceFactory::~SavedFilesServiceFactory() {}

KeyedService* SavedFilesServiceFactory::BuildServiceInstanceFor(
    content::BrowserContext* profile) const {
  return new SavedFilesService(static_cast<Profile*>(profile));
}

}  // namespace apps