| 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_FORWARDING_WINDOW_MANAGER_H_ | 5 #ifndef COMPONENTS_MUS_WS_FORWARDING_WINDOW_MANAGER_H_ |
| 6 #define COMPONENTS_MUS_WS_FORWARDING_WINDOW_MANAGER_H_ | 6 #define COMPONENTS_MUS_WS_FORWARDING_WINDOW_MANAGER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include "base/macros.h" | 10 #include "base/macros.h" |
| 9 #include "components/mus/public/interfaces/window_manager.mojom.h" | 11 #include "components/mus/public/interfaces/window_manager.mojom.h" |
| 10 | 12 |
| 11 namespace mus { | 13 namespace mus { |
| 12 namespace ws { | 14 namespace ws { |
| 13 | 15 |
| 14 class ConnectionManager; | 16 class ConnectionManager; |
| 15 | 17 |
| 16 // WindowManager implementation that forwards to the window manager of the | 18 // WindowManager implementation that forwards to the window manager of the |
| 17 // active display. | 19 // active display. |
| (...skipping 14 matching lines...) Expand all Loading... |
| 32 | 34 |
| 33 ConnectionManager* connection_manager_; | 35 ConnectionManager* connection_manager_; |
| 34 | 36 |
| 35 DISALLOW_COPY_AND_ASSIGN(ForwardingWindowManager); | 37 DISALLOW_COPY_AND_ASSIGN(ForwardingWindowManager); |
| 36 }; | 38 }; |
| 37 | 39 |
| 38 } // namespace ws | 40 } // namespace ws |
| 39 } // namespace mus | 41 } // namespace mus |
| 40 | 42 |
| 41 #endif // COMPONENTS_MUS_WS_FORWARDING_WINDOW_MANAGER_H_ | 43 #endif // COMPONENTS_MUS_WS_FORWARDING_WINDOW_MANAGER_H_ |
| OLD | NEW |