OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef ATHENA_SCREEN_PUBLIC_SCREEN_MANAGER_H_ | 5 #ifndef ATHENA_SCREEN_PUBLIC_SCREEN_MANAGER_H_ |
6 #define ATHENA_SCREEN_PUBLIC_SCREEN_MANAGER_H_ | 6 #define ATHENA_SCREEN_PUBLIC_SCREEN_MANAGER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "athena/athena_export.h" | 10 #include "athena/common/athena_export.h" |
11 | 11 |
12 namespace aura { | 12 namespace aura { |
13 class Window; | 13 class Window; |
14 } | 14 } |
15 | 15 |
16 namespace gfx { | 16 namespace gfx { |
17 class ImageSkia; | 17 class ImageSkia; |
18 } | 18 } |
19 | 19 |
20 namespace athena { | 20 namespace athena { |
(...skipping 21 matching lines...) Expand all Loading... |
42 // Return the context object to be used for widget creation. | 42 // Return the context object to be used for widget creation. |
43 virtual aura::Window* GetContext() = 0; | 43 virtual aura::Window* GetContext() = 0; |
44 | 44 |
45 // Sets the background image. | 45 // Sets the background image. |
46 virtual void SetBackgroundImage(const gfx::ImageSkia& image) = 0; | 46 virtual void SetBackgroundImage(const gfx::ImageSkia& image) = 0; |
47 }; | 47 }; |
48 | 48 |
49 } // namespace athena | 49 } // namespace athena |
50 | 50 |
51 #endif // ATHENA_SCREEN_PUBLIC_SCREEN_MANAGER_H_ | 51 #endif // ATHENA_SCREEN_PUBLIC_SCREEN_MANAGER_H_ |
OLD | NEW |