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

Side by Side Diff: chrome/browser/chromeos/login/quick_unlock/pin_storage_factory.cc

Issue 1977923002: Implement pin storage backend. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Rebase Created 4 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 2016 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/chromeos/login/quick_unlock/pin_storage_factory.h"
6
7 #include "chrome/browser/chromeos/login/quick_unlock/pin_storage.h"
8 #include "chrome/browser/profiles/profile.h"
9 #include "components/keyed_service/content/browser_context_dependency_manager.h"
10
11 namespace chromeos {
12
13 // static
14 PinStorage* PinStorageFactory::GetForProfile(Profile* profile) {
15 return static_cast<PinStorage*>(
16 GetInstance()->GetServiceForBrowserContext(profile, true));
17 }
18
19 // static
20 PinStorageFactory* PinStorageFactory::GetInstance() {
21 return base::Singleton<PinStorageFactory>::get();
22 }
23
24 PinStorageFactory::PinStorageFactory()
25 : BrowserContextKeyedServiceFactory(
26 "PinStorageFactory",
27 BrowserContextDependencyManager::GetInstance()) {}
28
29 PinStorageFactory::~PinStorageFactory() {}
30
31 KeyedService* PinStorageFactory::BuildServiceInstanceFor(
32 content::BrowserContext* context) const {
33 return new PinStorage(Profile::FromBrowserContext(context)->GetPrefs());
34 }
35
36 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698