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

Unified Diff: ash/common/wm/screen_dimmer.cc

Issue 2734653002: chromeos: Move files in //ash/common to //ash (Closed)
Patch Set: fix a11y tests, fix docs Created 3 years, 10 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/common/wm/screen_dimmer.h ('k') | ash/common/wm/switchable_windows.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/wm/screen_dimmer.cc
diff --git a/ash/common/wm/screen_dimmer.cc b/ash/common/wm/screen_dimmer.cc
deleted file mode 100644
index 2b697faf7e1ba2560d5f83ed1d7c4bfa6bd3fc07..0000000000000000000000000000000000000000
--- a/ash/common/wm/screen_dimmer.cc
+++ /dev/null
@@ -1,82 +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/common/wm/screen_dimmer.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 "ash/public/cpp/shell_window_ids.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() {
- // Usage in chrome results in ScreenDimmer outliving the shell.
- if (WmShell::HasInstance())
- 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/common/wm/screen_dimmer.h ('k') | ash/common/wm/switchable_windows.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698