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 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.
| |
11 // 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.
| |
12 void RearrangeVisibleWindowOnHideOrRemove(const aura::Window* removed_window); | |
13 | |
14 // 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.
| |
15 // 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 |