Chromium Code Reviews| 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/18 16:36:10
Your description and name for both of these don't
Mr4D (OOO till 08-26)
2012/10/19 20:46:05
Done.
| |
| 11 // location management can be performed and rearrange accordingly | |
| 12 void RearrangeVisibleWindowOnHide(const aura::Window* removed_window); | |
| 13 | |
| 14 // Check if after insertion of the given |added_window| an automated desktop | |
| 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 |