| Index: ash/common/wm/container_finder.h
|
| diff --git a/ash/common/wm/container_finder.h b/ash/common/wm/container_finder.h
|
| index e8e7683f8784b3f7b870c3c414da31127916f45a..a54e57adde6b6930a58bc0e82e142b39615f473d 100644
|
| --- a/ash/common/wm/container_finder.h
|
| +++ b/ash/common/wm/container_finder.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef ASH_COMMON_WM_CONTAINER_FINDER_H_
|
| #define ASH_COMMON_WM_CONTAINER_FINDER_H_
|
|
|
| +#include <vector>
|
| +
|
| #include "ash/ash_export.h"
|
|
|
| namespace gfx {
|
| @@ -27,6 +29,13 @@ ASH_EXPORT WmWindow* GetDefaultParent(WmWindow* context,
|
| WmWindow* window,
|
| const gfx::Rect& bounds);
|
|
|
| +// Returns the list of containers that match |container_id| in all root windows.
|
| +// If |priority_root| is non-null, the container in |priority_root| is placed at
|
| +// the front of the list.
|
| +ASH_EXPORT std::vector<WmWindow*> GetContainersFromAllRootWindows(
|
| + int container_id,
|
| + WmWindow* priority_root = nullptr);
|
| +
|
| } // namespace wm
|
| } // namespace ash
|
|
|
|
|