OLD | NEW |
(Empty) | |
| 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. |
| 4 |
| 5 #ifndef ATHENA_WM_WINDOW_LIST_PROVIDER_IMPL_H_ |
| 6 #define ATHENA_WM_WINDOW_LIST_PROVIDER_IMPL_H_ |
| 7 |
| 8 #include "athena/wm/public/window_list_provider.h" |
| 9 |
| 10 namespace athena { |
| 11 |
| 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(); |
| 18 |
| 19 private: |
| 20 // WindowListProvider: |
| 21 virtual aura::Window::Windows GetWindowList() const OVERRIDE; |
| 22 |
| 23 aura::Window* container_; |
| 24 |
| 25 DISALLOW_COPY_AND_ASSIGN(WindowListProviderImpl); |
| 26 }; |
| 27 |
| 28 } // namespace athena |
| 29 |
| 30 #endif // ATHENA_WM_WINDOW_LIST_PROVIDER_IMPL_H_ |
OLD | NEW |