Home | History | Annotate | Download | only in login

Lines Matching defs:ScreenLocker

60 // Observer to start ScreenLocker when the screen lock
108 chromeos::ScreenLocker::Show();
123 chromeos::ScreenLocker::Hide();
149 ScreenLocker* ScreenLocker::screen_locker_ = NULL;
152 // ScreenLocker, public:
154 ScreenLocker::ScreenLocker(const UserList& users)
165 void ScreenLocker::Init() {
171 void ScreenLocker::OnLoginFailure(const LoginFailure& error) {
178 UMA_HISTOGRAM_TIMES("ScreenLocker.AuthenticationFailureTime", delta);
194 void ScreenLocker::OnLoginSuccess(
205 UMA_HISTOGRAM_TIMES("ScreenLocker.AuthenticationSuccessTime", delta);
247 base::Bind(&ScreenLocker::UnlockOnLoginSuccess,
254 void ScreenLocker::UnlockOnLoginSuccess() {
277 void ScreenLocker::Authenticate(const UserContext& user_context) {
291 void ScreenLocker::AuthenticateByPassword(const std::string& password) {
296 void ScreenLocker::ClearErrors() {
300 void ScreenLocker::EnableInput() {
304 void ScreenLocker::Signout() {
315 void ScreenLocker::ShowErrorMessage(int error_msg_id,
322 void ScreenLocker::SetLoginStatusConsumer(
328 void ScreenLocker::Show() {
351 ScreenLocker* locker =
352 new ScreenLocker(UserManager::Get()->GetLRULoggedInUsers());
353 VLOG(1) << "Created ScreenLocker " << locker;
356 VLOG(1) << "ScreenLocker " << screen_locker_ << " already exists; "
364 void ScreenLocker::Hide() {
375 base::Bind(&ScreenLocker::ScheduleDeletion);
380 void ScreenLocker::ScheduleDeletion() {
384 VLOG(1) << "Posting task to delete ScreenLocker " << screen_locker_;
385 ScreenLocker* screen_locker = screen_locker_;
391 void ScreenLocker::InitClass() {
396 // ScreenLocker, private:
398 ScreenLocker::~ScreenLocker() {
399 VLOG(1) << "Destroying ScreenLocker " << this;
415 content::Source<ScreenLocker>(this),
422 void ScreenLocker::SetAuthenticator(Authenticator* authenticator) {
426 void ScreenLocker::ScreenLockReady() {
429 VLOG(1) << "ScreenLocker " << this << " is ready after "
431 UMA_HISTOGRAM_TIMES("ScreenLocker.ScreenLockTime", delta);
441 content::Source<ScreenLocker>(this),
447 content::WebUI* ScreenLocker::GetAssociatedWebUI() {
451 bool ScreenLocker::IsUserLoggedIn(const std::string& username) {