OLD | NEW |
| (Empty) |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "ui/aura/window.h" | |
6 | |
7 namespace ash { | |
8 namespace internal { | |
9 | |
10 // Check if after removal or hide of the given |removed_window| an automated | |
11 // desktop location management can be performed and rearrange accordingly. | |
12 void RearrangeVisibleWindowOnHideOrRemove(const aura::Window* removed_window); | |
13 | |
14 // Check if after insertion or showing of the given |added_window| an automated | |
15 // desktop location management can be performed and rearrange accordingly. | |
16 void RearrangeVisibleWindowOnShow(aura::Window* added_window); | |
17 | |
18 } // namespace internal | |
19 } // namespace ash | |
20 | |
OLD | NEW |