Chromium Code Reviews| Index: athena/wm/public/window_list_provider_observer.h |
| diff --git a/athena/wm/public/window_list_provider_observer.h b/athena/wm/public/window_list_provider_observer.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..9d976516af1c4c0a55576596138e815ba0c18f7b |
| --- /dev/null |
| +++ b/athena/wm/public/window_list_provider_observer.h |
| @@ -0,0 +1,23 @@ |
| +// Copyright 2014 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef ATHENA_WM_PUBLIC_WINDOW_LIST_PROVIDER_OBSERVER_H_ |
| +#define ATHENA_WM_PUBLIC_WINDOW_LIST_PROVIDER_OBSERVER_H_ |
| + |
| +#include "athena/athena_export.h" |
| + |
| +namespace athena { |
| + |
| +// An observer to Activity list changes like e.g. stacking order has changed. |
| +class ATHENA_EXPORT WindowListProviderObserver { |
| + public: |
| + virtual ~WindowListProviderObserver() {} |
| + |
| + // The Activity stacking has changed. |
| + 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.
|
| +}; |
| + |
| +} // namespace athena |
| + |
| +#endif // ATHENA_WM_PUBLIC_WINDOW_LIST_PROVIDER_OBSERVER_H_ |