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

Side by Side Diff: athena/wm/public/window_list_provider_observer.h

Issue 480293003: Adding functions to the window_list_provider for accessing the activities window list (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moved Window observer from ResourceManager to WindowListProvider Created 6 years, 3 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
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_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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698