Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: trunk/src/ash/test/test_session_state_delegate.cc

Issue 14200034: Revert 194578 "Add ash SessionStateDelegate" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « trunk/src/ash/test/test_session_state_delegate.h ('k') | trunk/src/ash/test/test_shell_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/ash/test/test_session_state_delegate.cc
===================================================================
--- trunk/src/ash/test/test_session_state_delegate.cc (revision 194588)
+++ trunk/src/ash/test/test_session_state_delegate.cc (working copy)
@@ -1,63 +0,0 @@
-// 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 "ash/test/test_session_state_delegate.h"
-
-namespace ash {
-namespace test {
-
-TestSessionStateDelegate::TestSessionStateDelegate()
- : has_active_user_(true),
- active_user_session_started_(true),
- can_lock_screen_(true),
- screen_locked_(false) {
-}
-
-TestSessionStateDelegate::~TestSessionStateDelegate() {
-}
-
-bool TestSessionStateDelegate::HasActiveUser() const {
- return has_active_user_;
-}
-
-bool TestSessionStateDelegate::IsActiveUserSessionStarted() const {
- return active_user_session_started_;
-}
-
-bool TestSessionStateDelegate::CanLockScreen() const {
- return has_active_user_ && can_lock_screen_;
-}
-
-bool TestSessionStateDelegate::IsScreenLocked() const {
- return screen_locked_;
-}
-
-void TestSessionStateDelegate::LockScreen() {
- if (CanLockScreen())
- screen_locked_ = true;
-}
-
-void TestSessionStateDelegate::UnlockScreen() {
- screen_locked_ = false;
-}
-
-void TestSessionStateDelegate::SetHasActiveUser(bool has_active_user) {
- has_active_user_ = has_active_user;
- if (!has_active_user)
- active_user_session_started_ = false;
-}
-
-void TestSessionStateDelegate::SetActiveUserSessionStarted(
- bool active_user_session_started) {
- active_user_session_started_ = active_user_session_started;
- if (active_user_session_started)
- has_active_user_ = true;
-}
-
-void TestSessionStateDelegate::SetCanLockScreen(bool can_lock_screen) {
- can_lock_screen_ = can_lock_screen;
-}
-
-} // namespace test
-} // namespace ash
« no previous file with comments | « trunk/src/ash/test/test_session_state_delegate.h ('k') | trunk/src/ash/test/test_shell_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698