Index: ash/wm/workspace/auto_window_management.h |
diff --git a/ash/wm/workspace/auto_window_management.h b/ash/wm/workspace/auto_window_management.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..04ff9ff787cf2595c599c1cd172b773ea248e741 |
--- /dev/null |
+++ b/ash/wm/workspace/auto_window_management.h |
@@ -0,0 +1,20 @@ |
+// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "ui/aura/window.h" |
+ |
+namespace ash { |
+namespace internal { |
+ |
+// Check if after removal of the given |removed_window| an automated desktop |
+// location management can be performed and rearrange accordingly |
+void RearrangeVisibleWindowOnHide(const aura::Window* removed_window); |
+ |
+// Check if after insertion of the given |added_window| an automated desktop |
+// location management can be performed and rearrange accordingly. |
+void RearrangeVisibleWindowOnShow(aura::Window* added_window); |
+ |
+} // namespace internal |
+} // namespace ash |
+ |