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

Unified Diff: ash/wm/screen_dimmer.cc

Issue 2334013003: Moves ScreenDimmer to ash/common (Closed)
Patch Set: Created 4 years, 3 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/wm/screen_dimmer.h ('k') | ash/wm/screen_dimmer_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/screen_dimmer.cc
diff --git a/ash/wm/screen_dimmer.cc b/ash/wm/screen_dimmer.cc
deleted file mode 100644
index 3d89039722e9daa2978ab22fc25f7d9aac9b3367..0000000000000000000000000000000000000000
--- a/ash/wm/screen_dimmer.cc
+++ /dev/null
@@ -1,80 +0,0 @@
-// Copyright (c) 2012 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/wm/screen_dimmer.h"
-
-#include "ash/common/shell_window_ids.h"
-#include "ash/common/wm/container_finder.h"
-#include "ash/common/wm/window_dimmer.h"
-#include "ash/common/wm_shell.h"
-#include "ash/common/wm_window.h"
-#include "ash/common/wm_window_user_data.h"
-#include "base/memory/ptr_util.h"
-
-namespace ash {
-namespace {
-
-// Opacity when it's dimming the entire screen.
-const float kDimmingLayerOpacityForRoot = 0.4f;
-
-// Opacity for lock screen.
-const float kDimmingLayerOpacityForLockScreen = 0.5f;
-
-} // namespace
-
-ScreenDimmer::ScreenDimmer(Container container)
- : container_(container),
- is_dimming_(false),
- at_bottom_(false),
- window_dimmers_(base::MakeUnique<WmWindowUserData<WindowDimmer>>()) {
- WmShell::Get()->AddShellObserver(this);
-}
-
-ScreenDimmer::~ScreenDimmer() {
- WmShell::Get()->RemoveShellObserver(this);
-}
-
-void ScreenDimmer::SetDimming(bool should_dim) {
- if (should_dim == is_dimming_)
- return;
- is_dimming_ = should_dim;
-
- Update(should_dim);
-}
-
-std::vector<WmWindow*> ScreenDimmer::GetAllContainers() {
- return container_ == Container::ROOT
- ? WmShell::Get()->GetAllRootWindows()
- : wm::GetContainersFromAllRootWindows(
- ash::kShellWindowId_LockScreenContainersContainer);
-}
-
-void ScreenDimmer::OnRootWindowAdded(WmWindow* root_window) {
- Update(is_dimming_);
-}
-
-void ScreenDimmer::Update(bool should_dim) {
- for (WmWindow* container : GetAllContainers()) {
- WindowDimmer* window_dimmer = window_dimmers_->Get(container);
- if (should_dim) {
- if (!window_dimmer) {
- window_dimmers_->Set(container,
- base::MakeUnique<WindowDimmer>(container));
- window_dimmer = window_dimmers_->Get(container);
- window_dimmer->SetDimOpacity(container_ == Container::ROOT
- ? kDimmingLayerOpacityForRoot
- : kDimmingLayerOpacityForLockScreen);
- }
- if (at_bottom_)
- container->StackChildAtBottom(window_dimmer->window());
- else
- container->StackChildAtTop(window_dimmer->window());
- window_dimmer->window()->Show();
- } else if (window_dimmer) {
- window_dimmers_->Set(container, nullptr);
- }
- }
-}
-
-} // namespace ash
« no previous file with comments | « ash/wm/screen_dimmer.h ('k') | ash/wm/screen_dimmer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698