1 // Copyright 2014 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.
5 #ifndef ATHENA_WM_WINDOW_LIST_PROVIDER_IMPL_H_
6 #define ATHENA_WM_WINDOW_LIST_PROVIDER_IMPL_H_
8 #include "athena/wm/public/window_list_provider.h"
12 // This implementation of the WindowListProviderImpl uses the same order as in
13 // the container window's stacking order.
14 class ATHENA_EXPORT WindowListProviderImpl
: public WindowListProvider
{
16 explicit WindowListProviderImpl(aura::Window
* container
);
17 virtual ~WindowListProviderImpl();
20 // WindowListProvider:
21 virtual aura::Window::Windows
GetWindowList() const OVERRIDE
;
23 aura::Window
* container_
;
25 DISALLOW_COPY_AND_ASSIGN(WindowListProviderImpl
);
30 #endif // ATHENA_WM_WINDOW_LIST_PROVIDER_IMPL_H_