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 COMPONENTS_MUS_WS_SERVER_WINDOW_H_ | 5 #ifndef COMPONENTS_MUS_WS_SERVER_WINDOW_H_ |
6 #define COMPONENTS_MUS_WS_SERVER_WINDOW_H_ | 6 #define COMPONENTS_MUS_WS_SERVER_WINDOW_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
13 #include "components/mus/public/interfaces/compositor_frame.mojom.h" | 13 #include "components/mus/public/interfaces/compositor_frame.mojom.h" |
14 #include "components/mus/public/interfaces/window_tree.mojom.h" | 14 #include "components/mus/public/interfaces/window_tree.mojom.h" |
15 #include "components/mus/ws/ids.h" | 15 #include "components/mus/ws/ids.h" |
16 #include "components/mus/ws/server_window_surface.h" | 16 #include "components/mus/ws/server_window_surface.h" |
17 #include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h" | 17 #include "mojo/public/cpp/bindings/binding.h" |
18 #include "ui/gfx/geometry/insets.h" | 18 #include "ui/gfx/geometry/insets.h" |
19 #include "ui/gfx/geometry/rect.h" | 19 #include "ui/gfx/geometry/rect.h" |
20 #include "ui/gfx/transform.h" | 20 #include "ui/gfx/transform.h" |
21 #include "ui/platform_window/text_input_state.h" | 21 #include "ui/platform_window/text_input_state.h" |
22 | 22 |
23 namespace mus { | 23 namespace mus { |
24 namespace ws { | 24 namespace ws { |
25 | 25 |
26 class ServerWindowDelegate; | 26 class ServerWindowDelegate; |
27 class ServerWindowObserver; | 27 class ServerWindowObserver; |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 | 170 |
171 base::ObserverList<ServerWindowObserver> observers_; | 171 base::ObserverList<ServerWindowObserver> observers_; |
172 | 172 |
173 DISALLOW_COPY_AND_ASSIGN(ServerWindow); | 173 DISALLOW_COPY_AND_ASSIGN(ServerWindow); |
174 }; | 174 }; |
175 | 175 |
176 } // namespace ws | 176 } // namespace ws |
177 } // namespace mus | 177 } // namespace mus |
178 | 178 |
179 #endif // COMPONENTS_MUS_WS_SERVER_WINDOW_H_ | 179 #endif // COMPONENTS_MUS_WS_SERVER_WINDOW_H_ |
OLD | NEW |