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

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

Issue 2015413002: Enable the PIN keyboard on the lockscreen. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Address comments Created 4 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
1 // Copyright 2016 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/chromeos/login/quick_unlock/pin_storage_factory.h" 5 #include "chrome/browser/chromeos/login/quick_unlock/pin_storage_factory.h"
6 6
7 #include "chrome/browser/chromeos/login/quick_unlock/pin_storage.h" 7 #include "chrome/browser/chromeos/login/quick_unlock/pin_storage.h"
8 #include "chrome/browser/chromeos/profiles/profile_helper.h"
8 #include "chrome/browser/profiles/profile.h" 9 #include "chrome/browser/profiles/profile.h"
9 #include "components/keyed_service/content/browser_context_dependency_manager.h" 10 #include "components/keyed_service/content/browser_context_dependency_manager.h"
11 #include "components/user_manager/user.h"
12 #include "components/user_manager/user_manager.h"
10 13
11 namespace chromeos { 14 namespace chromeos {
12 15
13 // static 16 // static
14 PinStorage* PinStorageFactory::GetForProfile(Profile* profile) { 17 PinStorage* PinStorageFactory::GetForProfile(Profile* profile) {
15 return static_cast<PinStorage*>( 18 return static_cast<PinStorage*>(
16 GetInstance()->GetServiceForBrowserContext(profile, true)); 19 GetInstance()->GetServiceForBrowserContext(profile, true));
17 } 20 }
18 21
19 // static 22 // static
23 PinStorage* PinStorageFactory::GetForUser(const user_manager::User* user) {
24 Profile* profile = ProfileHelper::Get()->GetProfileByUser(user);
25 if (!profile)
26 return nullptr;
27
28 return GetForProfile(profile);
29 }
30
31 // static
32 PinStorage* PinStorageFactory::GetForAccountId(const AccountId& account_id) {
33 const user_manager::User* user =
34 user_manager::UserManager::Get()->FindUser(account_id);
35 if (!user)
36 return nullptr;
37
38 return GetForUser(user);
39 }
40
41 // static
20 PinStorageFactory* PinStorageFactory::GetInstance() { 42 PinStorageFactory* PinStorageFactory::GetInstance() {
21 return base::Singleton<PinStorageFactory>::get(); 43 return base::Singleton<PinStorageFactory>::get();
22 } 44 }
23 45
24 PinStorageFactory::PinStorageFactory() 46 PinStorageFactory::PinStorageFactory()
25 : BrowserContextKeyedServiceFactory( 47 : BrowserContextKeyedServiceFactory(
26 "PinStorageFactory", 48 "PinStorageFactory",
27 BrowserContextDependencyManager::GetInstance()) {} 49 BrowserContextDependencyManager::GetInstance()) {}
28 50
29 PinStorageFactory::~PinStorageFactory() {} 51 PinStorageFactory::~PinStorageFactory() {}
30 52
31 KeyedService* PinStorageFactory::BuildServiceInstanceFor( 53 KeyedService* PinStorageFactory::BuildServiceInstanceFor(
32 content::BrowserContext* context) const { 54 content::BrowserContext* context) const {
33 return new PinStorage(Profile::FromBrowserContext(context)->GetPrefs()); 55 return new PinStorage(Profile::FromBrowserContext(context)->GetPrefs());
34 } 56 }
35 57
36 } // namespace chromeos 58 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698