summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chromeos/login/screen_locker_delegate.cc
blob: c6b98133ddcd1e838f7b1fe1bb3cc458cb8786fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/chromeos/login/screen_locker.h"
#include "chrome/browser/chromeos/login/screen_locker_delegate.h"

namespace chromeos {

ScreenLockerDelegate::ScreenLockerDelegate(ScreenLocker* screen_locker)
    : screen_locker_(screen_locker) {
}

ScreenLockerDelegate::~ScreenLockerDelegate() {
}

void ScreenLockerDelegate::ScreenLockReady() {
  screen_locker_->ScreenLockReady();
}

}  // namespace chromeos