| 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_;
|
|
|
|
|