| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_H_ | 5 #ifndef SERVICES_UI_WS_SERVER_WINDOW_H_ |
| 6 #define SERVICES_UI_WS_SERVER_WINDOW_H_ | 6 #define SERVICES_UI_WS_SERVER_WINDOW_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/logging.h" | 14 #include "base/logging.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/observer_list.h" | 16 #include "base/observer_list.h" |
| 17 #include "cc/ipc/display_compositor.mojom.h" | 17 #include "cc/ipc/frame_sink_manager.mojom.h" |
| 18 #include "cc/ipc/mojo_compositor_frame_sink.mojom.h" | 18 #include "cc/ipc/mojo_compositor_frame_sink.mojom.h" |
| 19 #include "mojo/public/cpp/bindings/binding.h" | 19 #include "mojo/public/cpp/bindings/binding.h" |
| 20 #include "services/ui/public/interfaces/window_tree.mojom.h" | 20 #include "services/ui/public/interfaces/window_tree.mojom.h" |
| 21 #include "services/ui/ws/ids.h" | 21 #include "services/ui/ws/ids.h" |
| 22 #include "ui/gfx/geometry/insets.h" | 22 #include "ui/gfx/geometry/insets.h" |
| 23 #include "ui/gfx/geometry/rect.h" | 23 #include "ui/gfx/geometry/rect.h" |
| 24 #include "ui/gfx/geometry/vector2d.h" | 24 #include "ui/gfx/geometry/vector2d.h" |
| 25 #include "ui/gfx/transform.h" | 25 #include "ui/gfx/transform.h" |
| 26 #include "ui/platform_window/text_input_state.h" | 26 #include "ui/platform_window/text_input_state.h" |
| 27 | 27 |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 | 279 |
| 280 base::ObserverList<ServerWindowObserver> observers_; | 280 base::ObserverList<ServerWindowObserver> observers_; |
| 281 | 281 |
| 282 DISALLOW_COPY_AND_ASSIGN(ServerWindow); | 282 DISALLOW_COPY_AND_ASSIGN(ServerWindow); |
| 283 }; | 283 }; |
| 284 | 284 |
| 285 } // namespace ws | 285 } // namespace ws |
| 286 } // namespace ui | 286 } // namespace ui |
| 287 | 287 |
| 288 #endif // SERVICES_UI_WS_SERVER_WINDOW_H_ | 288 #endif // SERVICES_UI_WS_SERVER_WINDOW_H_ |
| OLD | NEW |