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

Unified Diff: athena/wm/window_list_provider_impl.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: Updated the other functions as well 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/window_list_provider_impl.h
diff --git a/athena/wm/window_list_provider_impl.h b/athena/wm/window_list_provider_impl.h
index a62507ee907601f0adb0d6a33ef3e09bcbd48bfc..cf30bb2039bcaeba61e20b468b46cca5f7b6bac6 100644
--- a/athena/wm/window_list_provider_impl.h
+++ b/athena/wm/window_list_provider_impl.h
@@ -18,7 +18,17 @@ class ATHENA_EXPORT WindowListProviderImpl : public WindowListProvider {
private:
// WindowListProvider:
- virtual aura::Window::Windows GetWindowList() const OVERRIDE;
+ virtual aura::Window::Windows GetCurrentWindowList() const OVERRIDE;
+ virtual bool IsWindowInList(aura::Window* window) const OVERRIDE;
+ virtual bool IsValidWindow(aura::Window* window) const OVERRIDE;
+ virtual void AddWindow(aura::Window* window) OVERRIDE;
+ virtual void MoveToFront(aura::Window* window) OVERRIDE;
+ virtual void MoveWindowInFrontOfReferenceWindow(
+ aura::Window* window,
+ aura::Window*reference_window) OVERRIDE;
+ virtual void MoveWindowBehindOfReferenceWindow(
+ aura::Window* window,
+ aura::Window*reference_window) OVERRIDE;
aura::Window* container_;

Powered by Google App Engine
This is Rietveld 408576698