Remove unused tools/safely-roll-blink.py
[chromium-blink-merge.git] / athena / wm / window_list_provider_impl.h
bloba62507ee907601f0adb0d6a33ef3e09bcbd48bfc
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"
10 namespace athena {
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 {
15 public:
16 explicit WindowListProviderImpl(aura::Window* container);
17 virtual ~WindowListProviderImpl();
19 private:
20 // WindowListProvider:
21 virtual aura::Window::Windows GetWindowList() const OVERRIDE;
23 aura::Window* container_;
25 DISALLOW_COPY_AND_ASSIGN(WindowListProviderImpl);
28 } // namespace athena
30 #endif // ATHENA_WM_WINDOW_LIST_PROVIDER_IMPL_H_