Index: chrome/browser/ui/ash/session_state_delegate_views.cc |
diff --git a/chrome/browser/ui/ash/session_state_delegate_views.cc b/chrome/browser/ui/ash/session_state_delegate_views.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e8e4e512b49c0b75ed6268e29448df765452391c |
--- /dev/null |
+++ b/chrome/browser/ui/ash/session_state_delegate_views.cc |
@@ -0,0 +1,33 @@ |
+// Copyright (c) 2013 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/ui/ash/session_state_delegate.h" |
+ |
+SessionStateDelegate::SessionStateDelegate() { |
+} |
+ |
+SessionStateDelegate::~SessionStateDelegate() { |
+} |
+ |
+bool SessionStateDelegate::HasActiveUser() const { |
+ return true; |
+} |
+ |
+bool SessionStateDelegate::IsActiveUserSessionStarted() const { |
+ return true; |
+} |
+ |
+bool SessionStateDelegate::CanLockScreen() const { |
+ return false; |
+} |
+ |
+bool SessionStateDelegate::IsScreenLocked() const { |
+ return false; |
+} |
+ |
+void SessionStateDelegate::LockScreen() { |
+} |
+ |
+void SessionStateDelegate::UnlockScreen() { |
+} |