Chromium Code Reviews| 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 |
| index 138cb546a3e3663c8fbc39d9bf0857f58ff95e8e..b36e8ebe7a0ff92d91f454ee3d536eed52f61429 100644 |
| --- a/ash/wm/workspace/auto_window_management.h |
| +++ b/ash/wm/workspace/auto_window_management.h |
| @@ -2,7 +2,15 @@ |
| // 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" |
| +#include "ash/ash_export.h" |
| + |
| +namespace gfx { |
| +class Rect; |
| +} |
| +namespace aura { |
| +class RootWindow; |
| +class Window; |
| +} |
| namespace ash { |
| namespace internal { |
| @@ -16,5 +24,11 @@ void RearrangeVisibleWindowOnHideOrRemove(const aura::Window* removed_window); |
| void RearrangeVisibleWindowOnShow(aura::Window* added_window); |
| } // namespace internal |
| -} // namespace ash |
| +// Returns the top window used for automated windows location |
| +// management. This is temporarily made public and exported until we |
|
Mr4D (OOO till 08-26)
2013/08/28 21:58:15
Did you put in here two spaces on purpose?
oshima
2013/08/29 09:18:04
fixed
|
| +// move the initial bounds logic in window_sizer_ash.cc into ash. |
|
Mr4D (OOO till 08-26)
2013/08/28 21:58:15
It might be better to add here a TODO.
oshima
2013/08/29 09:18:04
Done.
|
| +ASH_EXPORT aura::Window* GetTopWindowForNewWindow( |
| + const aura::RootWindow* root_window); |
| + |
| +} // namespace ash |