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

Unified 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 side-by-side diff with in-line comments
Download patch
« athena/wm/window_overview_mode.h ('K') | « athena/wm/window_overview_mode.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/wm/window_stack_provider.h
diff --git a/athena/wm/window_stack_provider.h b/athena/wm/window_stack_provider.h
new file mode 100644
index 0000000000000000000000000000000000000000..5815e8fa3a2ef7d8ed0275df508a3eea9c2754e7
--- /dev/null
+++ b/athena/wm/window_stack_provider.h
@@ -0,0 +1,21 @@
+#ifndef ATHENA_WM_WINDOW_STACK_PROVIDER_H_
+#define ATHENA_WM_WINDOW_STACK_PROVIDER_H_
+
+namespace aura {
+class Window;
+}
+
+namespace athena {
+
+// Interface for a stack of aura::Window objects.
+class WindowStackProvider {
+ public:
+ virtual ~WindowStackProvider() {}
+ virtual void MoveWindowToFront(aura::Window* window) = 0;
+
+ virtual const aura::Window::Windows& GetWindowStack() = 0;
+};
+
+} // namespace athena
+
+#endif // ATHENA_WM_WINDOW_STACK_PROVIDER_H_
« 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