HomeSort by relevance Sort by last modified time
    Searched refs:EasyUnlockService (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/chrome/browser/signin/
easy_unlock_service.cc 65 EasyUnlockService* EasyUnlockService::Get(Profile* profile) {
70 EasyUnlockService* EasyUnlockService::GetForUser(
76 return EasyUnlockService::Get(profile);
83 bool EasyUnlockService::IsSignInEnabled() {
99 class EasyUnlockService::BluetoothDetector
102 explicit BluetoothDetector(EasyUnlockService* service)
137 EasyUnlockService* service_;
145 class EasyUnlockService::PowerMonito
    [all...]
easy_unlock_service_factory.h 16 class EasyUnlockService;
19 // Singleton factory that builds and owns all EasyUnlockService.
24 static EasyUnlockService* GetForProfile(Profile* profile);
easy_unlock_service_factory.cc 27 EasyUnlockService* EasyUnlockServiceFactory::GetForProfile(Profile* profile) {
28 return static_cast<EasyUnlockService*>(
35 "EasyUnlockService",
49 if (EasyUnlockService::IsSignInEnabled()) {
70 // EasyUnlockService uses ExtensionSystem::ready().Post, which expects
easy_unlock_service.h 40 class EasyUnlockService : public KeyedService {
53 // Gets EasyUnlockService instance.
54 static EasyUnlockService* Get(Profile* profile);
56 // Gets EasyUnlockService instance associated with a user if the user is
58 static EasyUnlockService* GetForUser(const user_manager::User& user);
72 // Returns the EasyUnlockService type.
168 explicit EasyUnlockService(Profile* profile);
169 virtual ~EasyUnlockService();
277 base::WeakPtrFactory<EasyUnlockService> weak_ptr_factory_;
279 DISALLOW_COPY_AND_ASSIGN(EasyUnlockService);
    [all...]
easy_unlock_service_regular.h 27 // EasyUnlockService instance that should be used for regular, non-signin
29 class EasyUnlockServiceRegular : public EasyUnlockService {
35 // EasyUnlockService implementation.
36 virtual EasyUnlockService::Type GetType() const OVERRIDE;
easy_unlock_service_signin_chromeos.h 20 // EasyUnlockService instance that should be used for signin profile.
21 class EasyUnlockServiceSignin : public EasyUnlockService,
58 // EasyUnlockService implementation:
59 virtual EasyUnlockService::Type GetType() const OVERRIDE;
easy_unlock_service_regular.cc 48 : EasyUnlockService(profile),
49 turn_off_flow_status_(EasyUnlockService::IDLE),
56 EasyUnlockService::Type EasyUnlockServiceRegular::GetType() const {
57 return EasyUnlockService::TYPE_REGULAR;
228 EasyUnlockService::TurnOffFlowStatus
267 turn_off_flow_status_ = EasyUnlockService::IDLE;
easy_unlock_service_browsertest_chromeos.cc 118 EasyUnlockService* service() const {
119 return EasyUnlockService::Get(profile());
294 EXPECT_TRUE(EasyUnlockService::Get(primary_profile)->IsAllowed());
295 EXPECT_FALSE(EasyUnlockService::Get(secondary_profile)->IsAllowed());
easy_unlock_service_signin_chromeos.cc 93 : EasyUnlockService(profile),
102 EasyUnlockService::Type EasyUnlockServiceSignin::GetType() const {
103 return EasyUnlockService::TYPE_SIGNIN;
151 EasyUnlockService::TurnOffFlowStatus
153 return EasyUnlockService::IDLE;
  /external/chromium_org/chrome/browser/ui/webui/options/
easy_unlock_handler.cc 22 EasyUnlockService::Get(Profile::FromWebUI(web_ui()))->RemoveObserver(this);
47 EasyUnlockService::Get(Profile::FromWebUI(web_ui()))->AddObserver(this);
70 EasyUnlockService::TurnOffFlowStatus status =
71 EasyUnlockService::Get(Profile::FromWebUI(web_ui()))
78 case EasyUnlockService::IDLE:
81 case EasyUnlockService::PENDING:
84 case EasyUnlockService::FAIL:
102 EasyUnlockService::Get(Profile::FromWebUI(web_ui()))->RunTurnOffFlow();
106 EasyUnlockService::Get(Profile::FromWebUI(web_ui()))->ResetTurnOffFlow();
browser_options_handler.cc 619 EasyUnlockService::Get(Profile::FromWebUI(web_ui()))->IsAllowed());
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/easy_unlock_private/
easy_unlock_private_api.cc 462 if (EasyUnlockService::Get(profile)->UpdateScreenlockState(
484 EasyUnlockService::Get(profile)
501 EasyUnlockService::Get(profile)->GetPermitAccess();
521 EasyUnlockService::Get(profile)->ClearPermitAccess();
540 EasyUnlockService::Get(profile)->ClearRemoteDevices();
546 EasyUnlockService::Get(profile)->SetRemoteDevices(devices);
563 EasyUnlockService::Get(profile)->GetRemoteDevices();
579 EasyUnlockService::Get(profile)->GetChallenge();
601 EasyUnlockService::Get(profile)->FinalizeSignin(params->sign_in_secret);
612 EasyUnlockService* service
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/screenlock_private/
screenlock_private_api.cc 74 EasyUnlockService* service = EasyUnlockService::Get(GetProfile());
98 EasyUnlockService* service = EasyUnlockService::Get(profile);
screenlock_private_apitest.cc 72 EasyUnlockService::Get(profile())->AttemptAuth(kTestUser);
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
signin_screen_handler.h 40 class EasyUnlockService;
465 EasyUnlockService* GetEasyUnlockServiceForUser(
signin_screen_handler.cc     [all...]
  /external/chromium_org/chrome/browser/chromeos/login/session/
user_session_manager.cc 454 return EasyUnlockService::IsSignInEnabled() &&
    [all...]
  /external/chromium_org/chrome/browser/prefs/
browser_prefs.cc 278 EasyUnlockService::RegisterPrefs(registry);
414 EasyUnlockService::RegisterProfilePrefs(registry);
  /external/chromium_org/chrome/browser/chromeos/login/
existing_user_controller.cc 130 EasyUnlockService* easy_unlock_service =
131 EasyUnlockService::Get(ProfileHelper::GetSigninProfile());
139 EasyUnlockService* easy_unlock_service =
140 EasyUnlockService::Get(ProfileHelper::GetSigninProfile());
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/users/
chrome_user_manager_impl.cc 804 EasyUnlockService::ResetLocalStateForUser(user_id);
    [all...]

Completed in 331 milliseconds