blob: 8f06f02e7c1e8928329cbe6fb4af4ac7bc3f8c09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
// 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/system_background_controller.h"
#include "ui/aura/root_window.h"
#include "ui/compositor/layer.h"
#include "ui/compositor/layer_type.h"
namespace ash {
namespace internal {
namespace {
#if defined(OS_CHROMEOS)
// Background color used for the Chrome OS boot splash screen.
const SkColor kChromeOsBootColor = SkColorSetARGB(0xff, 0xfe, 0xfe, 0xfe);
#endif
} // namespace
SystemBackgroundController::SystemBackgroundController(
aura::RootWindow* root_window,
SkColor color)
: root_window_(root_window),
layer_(new ui::Layer(ui::LAYER_SOLID_COLOR)) {
root_window_->AddRootWindowObserver(this);
layer_->SetColor(color);
ui::Layer* root_layer = root_window_->layer();
layer_->SetBounds(gfx::Rect(root_layer->bounds().size()));
root_layer->Add(layer_.get());
root_layer->StackAtBottom(layer_.get());
}
SystemBackgroundController::~SystemBackgroundController() {
root_window_->RemoveRootWindowObserver(this);
}
void SystemBackgroundController::SetColor(SkColor color) {
layer_->SetColor(color);
}
void SystemBackgroundController::OnRootWindowResized(
const aura::RootWindow* root,
const gfx::Size& old_size) {
DCHECK_EQ(root_window_, root);
layer_->SetBounds(gfx::Rect(root_window_->layer()->bounds().size()));
}
} // namespace internal
} // namespace ash
|