OLD | NEW |
---|---|
(Empty) | |
1 #ifndef ATHENA_WM_PUBLIC_WINDOW_LIST_PROVIDER_H_ | |
2 #define ATHENA_WM_PUBLIC_WINDOW_LIST_PROVIDER_H_ | |
3 | |
4 #include "athena/athena_export.h" | |
5 #include "ui/aura/window.h" | |
6 | |
7 namespace athena { | |
8 | |
9 // Interface for an ordered list of aura::Window objects. | |
10 class ATHENA_EXPORT WindowListProvider { | |
11 public: | |
12 static WindowListProvider* Create(); | |
13 static WindowListProvider* GetInstance(); | |
oshima
2014/08/08 16:45:34
remove them?
mfomitchev
2014/08/08 17:40:50
Oops
| |
14 | |
15 virtual ~WindowListProvider() {} | |
16 | |
17 // Returns an ordered list of windows. | |
18 virtual aura::Window::Windows GetWindowList() const = 0; | |
19 // Moves the window to the front of the list. | |
oshima
2014/08/08 16:45:34
new line before the comment
mfomitchev
2014/08/08 17:40:51
Done.
| |
20 virtual void MoveToFront(aura::Window* window) = 0; | |
21 }; | |
22 | |
23 } // namespace wm | |
24 | |
25 #endif // ATHENA_WM_PUBLIC_WINDOW_LIST_PROVIDER_H_ | |
OLD | NEW |