| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_AURA_MUS_WINDOW_MANAGER_DELEGATE_H_ | 5 #ifndef UI_AURA_MUS_WINDOW_MANAGER_DELEGATE_H_ |
| 6 #define UI_AURA_MUS_WINDOW_MANAGER_DELEGATE_H_ | 6 #define UI_AURA_MUS_WINDOW_MANAGER_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <memory> | 11 #include <memory> |
| 12 #include <string> | 12 #include <string> |
| 13 #include <unordered_map> | 13 #include <unordered_map> |
| 14 #include <vector> | 14 #include <vector> |
| 15 | 15 |
| 16 #include "base/callback_forward.h" | 16 #include "base/callback_forward.h" |
| 17 #include "services/ui/public/interfaces/cursor.mojom.h" | 17 #include "services/ui/public/interfaces/cursor/cursor.mojom.h" |
| 18 #include "services/ui/public/interfaces/window_manager.mojom.h" | 18 #include "services/ui/public/interfaces/window_manager.mojom.h" |
| 19 #include "services/ui/public/interfaces/window_manager_constants.mojom.h" | 19 #include "services/ui/public/interfaces/window_manager_constants.mojom.h" |
| 20 #include "services/ui/public/interfaces/window_tree_constants.mojom.h" | 20 #include "services/ui/public/interfaces/window_tree_constants.mojom.h" |
| 21 #include "ui/aura/aura_export.h" | 21 #include "ui/aura/aura_export.h" |
| 22 #include "ui/events/mojo/event.mojom.h" | 22 #include "ui/events/mojo/event.mojom.h" |
| 23 | 23 |
| 24 namespace display { | 24 namespace display { |
| 25 class Display; | 25 class Display; |
| 26 } | 26 } |
| 27 | 27 |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 // window. | 182 // window. |
| 183 virtual void OnWmDeactivateWindow(Window* window) = 0; | 183 virtual void OnWmDeactivateWindow(Window* window) = 0; |
| 184 | 184 |
| 185 protected: | 185 protected: |
| 186 virtual ~WindowManagerDelegate() {} | 186 virtual ~WindowManagerDelegate() {} |
| 187 }; | 187 }; |
| 188 | 188 |
| 189 } // namespace ui | 189 } // namespace ui |
| 190 | 190 |
| 191 #endif // UI_AURA_MUS_WINDOW_MANAGER_DELEGATE_H_ | 191 #endif // UI_AURA_MUS_WINDOW_MANAGER_DELEGATE_H_ |
| OLD | NEW |