| 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 COMPONENTS_MUS_WS_DISPLAY_BINDING_H_ | 5 #ifndef COMPONENTS_MUS_WS_DISPLAY_BINDING_H_ |
| 6 #define COMPONENTS_MUS_WS_DISPLAY_BINDING_H_ | 6 #define COMPONENTS_MUS_WS_DISPLAY_BINDING_H_ |
| 7 | 7 |
| 8 #include <memory> |
| 9 |
| 8 #include "base/macros.h" | 10 #include "base/macros.h" |
| 9 #include "base/memory/scoped_ptr.h" | |
| 10 #include "components/mus/public/interfaces/window_tree_host.mojom.h" | 11 #include "components/mus/public/interfaces/window_tree_host.mojom.h" |
| 11 #include "components/mus/ws/display.h" | 12 #include "components/mus/ws/display.h" |
| 12 #include "components/mus/ws/user_id.h" | 13 #include "components/mus/ws/user_id.h" |
| 13 #include "mojo/public/cpp/bindings/binding.h" | 14 #include "mojo/public/cpp/bindings/binding.h" |
| 14 | 15 |
| 15 namespace mus { | 16 namespace mus { |
| 16 namespace ws { | 17 namespace ws { |
| 17 | 18 |
| 18 class ServerWindow; | 19 class ServerWindow; |
| 19 class WindowServer; | 20 class WindowServer; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 50 mojo::Binding<mojom::WindowTreeHost> binding_; | 51 mojo::Binding<mojom::WindowTreeHost> binding_; |
| 51 mojom::WindowTreeClientPtr client_; | 52 mojom::WindowTreeClientPtr client_; |
| 52 | 53 |
| 53 DISALLOW_COPY_AND_ASSIGN(DisplayBindingImpl); | 54 DISALLOW_COPY_AND_ASSIGN(DisplayBindingImpl); |
| 54 }; | 55 }; |
| 55 | 56 |
| 56 } // namespace ws | 57 } // namespace ws |
| 57 } // namespace mus | 58 } // namespace mus |
| 58 | 59 |
| 59 #endif // COMPONENTS_MUS_WS_DISPLAY_BINDING_H_ | 60 #endif // COMPONENTS_MUS_WS_DISPLAY_BINDING_H_ |
| OLD | NEW |