| 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_VIEW_TREE_HOST_IMPL_H_ | 5 #ifndef COMPONENTS_MUS_VM_VIEW_TREE_HOST_IMPL_H_ |
| 6 #define COMPONENTS_MUS_VIEW_TREE_HOST_IMPL_H_ | 6 #define COMPONENTS_MUS_VM_VIEW_TREE_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "components/mus/display_manager.h" | |
| 10 #include "components/mus/event_dispatcher.h" | |
| 11 #include "components/mus/focus_controller_delegate.h" | |
| 12 #include "components/mus/public/cpp/types.h" | 9 #include "components/mus/public/cpp/types.h" |
| 13 #include "components/mus/public/interfaces/view_tree_host.mojom.h" | 10 #include "components/mus/public/interfaces/view_tree_host.mojom.h" |
| 14 #include "components/mus/server_view.h" | 11 #include "components/mus/vm/display_manager.h" |
| 12 #include "components/mus/vm/event_dispatcher.h" |
| 13 #include "components/mus/vm/focus_controller_delegate.h" |
| 14 #include "components/mus/vm/server_view.h" |
| 15 | 15 |
| 16 namespace cc { | 16 namespace cc { |
| 17 class SurfaceManager; | 17 class SurfaceManager; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace mus { | 20 namespace mus { |
| 21 class SurfacesScheduler; | 21 class SurfacesScheduler; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace mus { | 24 namespace mus { |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 scoped_ptr<ServerView> root_; | 115 scoped_ptr<ServerView> root_; |
| 116 scoped_ptr<DisplayManager> display_manager_; | 116 scoped_ptr<DisplayManager> display_manager_; |
| 117 scoped_ptr<FocusController> focus_controller_; | 117 scoped_ptr<FocusController> focus_controller_; |
| 118 cc::SurfaceId surface_id_; | 118 cc::SurfaceId surface_id_; |
| 119 | 119 |
| 120 DISALLOW_COPY_AND_ASSIGN(ViewTreeHostImpl); | 120 DISALLOW_COPY_AND_ASSIGN(ViewTreeHostImpl); |
| 121 }; | 121 }; |
| 122 | 122 |
| 123 } // namespace mus | 123 } // namespace mus |
| 124 | 124 |
| 125 #endif // COMPONENTS_MUS_VIEW_TREE_HOST_IMPL_H_ | 125 #endif // COMPONENTS_MUS_VM_VIEW_TREE_HOST_IMPL_H_ |
| OLD | NEW |