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

Unified Diff: ash/wm/workspace/auto_window_management.h

Issue 11085053: Improving window auto management between workspaces (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: git try Created 8 years, 2 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
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..f8b7620180493b79b7a1102f00a10db2ebed0aee
--- /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
sky 2012/10/22 16:40:50 removal or hide
Mr4D (OOO till 08-26) 2012/10/22 20:27:23 Done.
+// location management can be performed and rearrange accordingly
sky 2012/10/22 16:40:50 nit: end with '.'.
Mr4D (OOO till 08-26) 2012/10/22 20:27:23 Done.
+void RearrangeVisibleWindowOnHideOrRemove(const aura::Window* removed_window);
+
+// Check if after insertion of the given |added_window| an automated desktop
sky 2012/10/22 16:40:50 insertion or showing. Also, you have two spaces be
Mr4D (OOO till 08-26) 2012/10/22 20:27:23 Done.
+// location management can be performed and rearrange accordingly.
+void RearrangeVisibleWindowOnShow(aura::Window* added_window);
+
+} // namespace internal
+} // namespace ash
+

Powered by Google App Engine
This is Rietveld 408576698