blob: 6da656345bd5bec50e09733c7e6c05848461e12a (
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
54
55
56
57
|
// 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.
#ifndef ASH_WM_SYSTEM_BACKGROUND_CONTROLLER_H_
#define ASH_WM_SYSTEM_BACKGROUND_CONTROLLER_H_
#include <string>
#include "ash/ash_export.h"
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "third_party/skia/include/core/SkColor.h"
#include "ui/aura/root_window_observer.h"
namespace aura {
class RootWindow;
}
namespace ui {
class Layer;
}
namespace ash {
namespace internal {
// SystemBackgroundController manages a ui::Layer that's stacked at the bottom
// of an aura::RootWindow's children. It exists solely to obscure portions of
// the root layer that aren't covered by any other layers (e.g. before the
// desktop background image is loaded at startup, or when we scale down all of
// the other layers as part of a power-button or window-management animation).
// It should never be transformed or restacked.
class SystemBackgroundController : public aura::RootWindowObserver {
public:
SystemBackgroundController(aura::RootWindow* root_window, SkColor color);
virtual ~SystemBackgroundController();
void SetColor(SkColor color);
// aura::RootWindowObserver overrides:
virtual void OnRootWindowResized(const aura::RootWindow* root,
const gfx::Size& old_size) OVERRIDE;
private:
class HostContentLayerDelegate;
aura::RootWindow* root_window_; // not owned
scoped_ptr<ui::Layer> layer_;
DISALLOW_COPY_AND_ASSIGN(SystemBackgroundController);
};
} // namespace internal
} // namespace ash
#endif // ASH_WM_SYSTEM_BACKGROUND_CONTROLLER_H_
|