| Index: trunk/src/chrome/browser/ui/ash/chrome_shell_delegate_views.cc
|
| ===================================================================
|
| --- trunk/src/chrome/browser/ui/ash/chrome_shell_delegate_views.cc (revision 194588)
|
| +++ trunk/src/chrome/browser/ui/ash/chrome_shell_delegate_views.cc (working copy)
|
| @@ -8,10 +8,34 @@
|
| #include "chrome/browser/ui/ash/caps_lock_delegate_views.h"
|
| #include "chrome/browser/ui/ash/window_positioner.h"
|
|
|
| +bool ChromeShellDelegate::IsUserLoggedIn() const {
|
| + return true;
|
| +}
|
| +
|
| +// Returns true if we're logged in and browser has been started
|
| +bool ChromeShellDelegate::IsSessionStarted() const {
|
| + return true;
|
| +}
|
| +
|
| +bool ChromeShellDelegate::IsGuestSession() const {
|
| + return false;
|
| +}
|
| +
|
| bool ChromeShellDelegate::IsFirstRunAfterBoot() const {
|
| return false;
|
| }
|
|
|
| +bool ChromeShellDelegate::CanLockScreen() const {
|
| + return false;
|
| +}
|
| +
|
| +void ChromeShellDelegate::LockScreen() {
|
| +}
|
| +
|
| +bool ChromeShellDelegate::IsScreenLocked() const {
|
| + return false;
|
| +}
|
| +
|
| void ChromeShellDelegate::PreInit() {
|
| }
|
|
|
|
|