[Mac] Remove NSApplication from the renderer.
[chromium-blink-merge.git] / ash / shell / window_watcher.h
blob2d94b77edf07ecb5a192a0f6271317e03998d230
1 // Copyright (c) 2012 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.
5 #ifndef ASH_SHELL_WINDOW_WATCHER_H_
6 #define ASH_SHELL_WINDOW_WATCHER_H_
8 #include <map>
10 #include "ash/shelf/shelf_item_types.h"
11 #include "base/compiler_specific.h"
12 #include "base/logging.h"
13 #include "base/memory/scoped_ptr.h"
14 #include "ui/aura/window_observer.h"
15 #include "ui/gfx/display_observer.h"
17 namespace aura {
18 class Window;
21 namespace ash {
22 namespace shell {
24 // TODO(sky): fix this class, its a bit broke with workspace2.
26 // WindowWatcher is responsible for listening for newly created windows and
27 // creating items on the Shelf for them.
28 class WindowWatcher : public aura::WindowObserver,
29 public gfx::DisplayObserver {
30 public:
31 WindowWatcher();
32 virtual ~WindowWatcher();
34 aura::Window* GetWindowByID(ash::ShelfID id);
36 // aura::WindowObserver overrides:
37 virtual void OnWindowAdded(aura::Window* new_window) OVERRIDE;
38 virtual void OnWillRemoveWindow(aura::Window* window) OVERRIDE;
40 // gfx::DisplayObserver overrides:
41 virtual void OnDisplayBoundsChanged(const gfx::Display& display) OVERRIDE;
42 virtual void OnDisplayAdded(const gfx::Display& new_display) OVERRIDE;
43 virtual void OnDisplayRemoved(const gfx::Display& old_display) OVERRIDE;
45 private:
46 class WorkspaceWindowWatcher;
48 typedef std::map<ash::ShelfID, aura::Window*> IDToWindow;
50 // Maps from window to the id we gave it.
51 IDToWindow id_to_window_;
53 scoped_ptr<WorkspaceWindowWatcher> workspace_window_watcher_;
55 DISALLOW_COPY_AND_ASSIGN(WindowWatcher);
58 } // namespace shell
59 } // namespace ash
61 #endif // ASH_SHELL_WINDOW_WATCHER_H_