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

Unified 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: Addressed 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 side-by-side diff with in-line comments
Download patch
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..007f5aac7fb8f7e5a5168b97455a0f47891f2749
--- /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 window list changes like e.g. stacking order has changed.
+class ATHENA_EXPORT WindowListProviderObserver {
+ public:
+ virtual ~WindowListProviderObserver() {}
+
+ // The Window stacking has changed.
+ virtual void OnWindowStackingChanged() = 0;
+};
+
+} // namespace athena
+
+#endif // ATHENA_WM_PUBLIC_WINDOW_LIST_PROVIDER_OBSERVER_H_

Powered by Google App Engine
This is Rietveld 408576698