Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Side by Side Diff: athena/wm/window_list_provider_impl.h

Issue 470083004: athena: A simpler implementation of WindowListProvider. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « athena/wm/split_view_controller_unittest.cc ('k') | athena/wm/window_list_provider_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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_
OLDNEW
« no previous file with comments | « athena/wm/split_view_controller_unittest.cc ('k') | athena/wm/window_list_provider_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698