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_PUBLIC_WINDOW_LIST_PROVIDER_OBSERVER_H_ | |
6 #define ATHENA_WM_PUBLIC_WINDOW_LIST_PROVIDER_OBSERVER_H_ | |
7 | |
8 #include "athena/athena_export.h" | |
9 | |
10 namespace athena { | |
11 | |
12 // An observer to Activity list changes like e.g. stacking order has changed. | |
13 class ATHENA_EXPORT WindowListProviderObserver { | |
14 public: | |
15 virtual ~WindowListProviderObserver() {} | |
16 | |
17 // The Activity stacking has changed. | |
18 virtual void OnActivityStackingChanged() = 0; | |
oshima
2014/09/09 18:28:37
OnWindowOrderChanged. Let's not use activity in at
Mr4D (OOO till 08-26)
2014/09/10 00:01:58
Done.
| |
19 }; | |
20 | |
21 } // namespace athena | |
22 | |
23 #endif // ATHENA_WM_PUBLIC_WINDOW_LIST_PROVIDER_OBSERVER_H_ | |
OLD | NEW |