| Index: athena/screen/background_controller.h
|
| diff --git a/athena/screen/background_controller.h b/athena/screen/background_controller.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4fd17f7f586d993bdd5ac6f15642a08484d6eca8
|
| --- /dev/null
|
| +++ b/athena/screen/background_controller.h
|
| @@ -0,0 +1,38 @@
|
| +// Copyright 2014 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 ATHENA_SCREEN_BACKGROUND_CONTROLLER_H_
|
| +#define ATHENA_SCREEN_BACKGROUND_CONTROLLER_H_
|
| +
|
| +#include "base/macros.h"
|
| +
|
| +namespace aura {
|
| +class Window;
|
| +}
|
| +
|
| +namespace gfx {
|
| +class ImageSkia;
|
| +}
|
| +
|
| +namespace views {
|
| +class Widget;
|
| +}
|
| +
|
| +namespace athena {
|
| +class BackgroundView;
|
| +
|
| +class BackgroundController {
|
| + public:
|
| + explicit BackgroundController(aura::Window* container);
|
| +
|
| + void SetImage(const gfx::ImageSkia& image);
|
| +
|
| + private:
|
| + BackgroundView* background_view_;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(BackgroundController);
|
| +};
|
| +}
|
| +
|
| +#endif // ATHENA_SCREEN_BACKGROUND_CONTROLLER_H_
|
|
|