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

Side by Side Diff: chrome/browser/bitmap_fetcher/bitmap_fetcher_service_factory.cc

Issue 319623003: [AiS] ImageService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix signed/unsigned conflict. Created 6 years, 6 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 2014 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 #include "chrome/browser/bitmap_fetcher/bitmap_fetcher_service_factory.h"
5
6 #include "chrome/browser/bitmap_fetcher/bitmap_fetcher_service.h"
7 #include "chrome/browser/profiles/profile.h"
8 #include "components/keyed_service/content/browser_context_dependency_manager.h"
9
10 /// Factory
11 BitmapFetcherService* BitmapFetcherServiceFactory::GetForBrowserContext(
12 content::BrowserContext* profile) {
13 return static_cast<BitmapFetcherService*>(
14 GetInstance()->GetServiceForBrowserContext(profile, true));
15 }
16
17 // static
18 BitmapFetcherServiceFactory* BitmapFetcherServiceFactory::GetInstance() {
19 return Singleton<BitmapFetcherServiceFactory>::get();
20 }
21
22 BitmapFetcherServiceFactory::BitmapFetcherServiceFactory()
23 : BrowserContextKeyedServiceFactory(
24 "BitmapFetcherService",
25 BrowserContextDependencyManager::GetInstance()) {
26 }
27
28 BitmapFetcherServiceFactory::~BitmapFetcherServiceFactory() {
29 }
30
31 KeyedService* BitmapFetcherServiceFactory::BuildServiceInstanceFor(
32 content::BrowserContext* context) const {
33 Profile* profile = static_cast<Profile*>(context);
34 DCHECK(!profile->IsOffTheRecord());
35 return new BitmapFetcherService(profile);
36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698