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

Side by Side Diff: athena/wm/window_stack_provider.h

Issue 420603011: Split Screen mode implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@split_view
Patch Set: Created 6 years, 5 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_WINDOW_STACK_PROVIDER_H_
2 #define ATHENA_WM_WINDOW_STACK_PROVIDER_H_
3
4 namespace aura {
5 class Window;
6 }
7
8 namespace athena {
9
10 // Interface for a stack of aura::Window objects.
11 class WindowStackProvider {
12 public:
13 virtual ~WindowStackProvider() {}
14 virtual void MoveWindowToFront(aura::Window* window) = 0;
15
16 virtual const aura::Window::Windows& GetWindowStack() = 0;
17 };
18
19 } // namespace athena
20
21 #endif // ATHENA_WM_WINDOW_STACK_PROVIDER_H_
OLDNEW
« athena/wm/window_overview_mode.h ('K') | « athena/wm/window_overview_mode.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698