| 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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 | 177 |
| 178 base::ObserverList<ServerWindowObserver> observers_; | 178 base::ObserverList<ServerWindowObserver> observers_; |
| 179 | 179 |
| 180 DISALLOW_COPY_AND_ASSIGN(ServerWindow); | 180 DISALLOW_COPY_AND_ASSIGN(ServerWindow); |
| 181 }; | 181 }; |
| 182 | 182 |
| 183 } // namespace ws | 183 } // namespace ws |
| 184 } // namespace mus | 184 } // namespace mus |
| 185 | 185 |
| 186 #endif // COMPONENTS_MUS_WS_SERVER_WINDOW_H_ | 186 #endif // COMPONENTS_MUS_WS_SERVER_WINDOW_H_ |
| OLD | NEW |