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

Unified Diff: ash/shelf/shelf_locking_manager.h

Issue 1907363004: (Merge to M-51) Revise the shelf alignment locking mechanism. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2704
Patch Set: Created 4 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 | « ash/shelf/shelf_layout_manager_unittest.cc ('k') | ash/shelf/shelf_locking_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/shelf/shelf_locking_manager.h
diff --git a/ash/shelf/shelf_locking_manager.h b/ash/shelf/shelf_locking_manager.h
new file mode 100644
index 0000000000000000000000000000000000000000..73878e203c989c9af0f303a4616dc03db006656c
--- /dev/null
+++ b/ash/shelf/shelf_locking_manager.h
@@ -0,0 +1,49 @@
+// Copyright 2016 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.
+
+#ifndef ASH_SHELF_SHELF_LOCKING_MANAGER_H_
+#define ASH_SHELF_SHELF_LOCKING_MANAGER_H_
+
+#include "ash/ash_export.h"
+#include "ash/session/session_state_observer.h"
+#include "ash/shelf/shelf_types.h"
+#include "ash/shell_observer.h"
+#include "ash/wm/lock_state_observer.h"
+
+namespace ash {
+
+class Shelf;
+
+// ShelfLockingManager observes screen and session events to [un]lock the shelf.
+class ASH_EXPORT ShelfLockingManager : public ShellObserver,
+ public SessionStateObserver,
+ public LockStateObserver {
+ public:
+ explicit ShelfLockingManager(Shelf* shelf);
+ ~ShelfLockingManager() override;
+
+ // ShellObserver:
+ void OnLockStateChanged(bool locked) override;
+
+ // SessionStateObserver:
+ void SessionStateChanged(SessionStateDelegate::SessionState state) override;
+
+ // LockStateObserver:
+ void OnLockStateEvent(EventType event) override;
+
+ private:
+ // Update the shelf state for session and screen lock changes.
+ void UpdateLockedState();
+
+ Shelf* shelf_;
+ bool session_locked_ = false;
+ bool screen_locked_ = false;
+ ShelfAlignment stored_alignment_ = SHELF_ALIGNMENT_BOTTOM;
+
+ DISALLOW_COPY_AND_ASSIGN(ShelfLockingManager);
+};
+
+} // namespace ash
+
+#endif // ASH_SHELF_SHELF_LOCKING_MANAGER_H_
« no previous file with comments | « ash/shelf/shelf_layout_manager_unittest.cc ('k') | ash/shelf/shelf_locking_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698