Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(59)

Side by Side Diff: athena/wm/public/window_list_provider.h

Issue 420603011: Split Screen mode implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@split_view
Patch Set: Addressing review feedback. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 virtual ~WindowListProvider() {}
13
14 // Returns an ordered list of windows.
15 virtual aura::Window::Windows GetWindowList() const = 0;
16
17 // Moves the window to the front of the list.
18 virtual void MoveToFront(aura::Window* window) = 0;
19 };
20
21 } // namespace wm
oshima 2014/08/08 18:00:40 nit: namespace athena
mfomitchev 2014/08/08 18:40:27 Done.
22
23 #endif // ATHENA_WM_PUBLIC_WINDOW_LIST_PROVIDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698