| 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 SERVICES_UI_WS_SERVER_WINDOW_OBSERVER_H_ | 5 #ifndef SERVICES_UI_WS_SERVER_WINDOW_OBSERVER_H_ |
| 6 #define SERVICES_UI_WS_SERVER_WINDOW_OBSERVER_H_ | 6 #define SERVICES_UI_WS_SERVER_WINDOW_OBSERVER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "services/ui/public/interfaces/cursor.mojom.h" | 13 #include "services/ui/public/interfaces/cursor/cursor.mojom.h" |
| 14 #include "services/ui/public/interfaces/mus_constants.mojom.h" | 14 #include "services/ui/public/interfaces/mus_constants.mojom.h" |
| 15 | 15 |
| 16 namespace gfx { | 16 namespace gfx { |
| 17 class Insets; | 17 class Insets; |
| 18 class Rect; | 18 class Rect; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace ui { | 21 namespace ui { |
| 22 struct TextInputState; | 22 struct TextInputState; |
| 23 } | 23 } |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 | 92 |
| 93 protected: | 93 protected: |
| 94 virtual ~ServerWindowObserver() {} | 94 virtual ~ServerWindowObserver() {} |
| 95 }; | 95 }; |
| 96 | 96 |
| 97 } // namespace ws | 97 } // namespace ws |
| 98 | 98 |
| 99 } // namespace ui | 99 } // namespace ui |
| 100 | 100 |
| 101 #endif // SERVICES_UI_WS_SERVER_WINDOW_OBSERVER_H_ | 101 #endif // SERVICES_UI_WS_SERVER_WINDOW_OBSERVER_H_ |
| OLD | NEW |