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 UI_VIEWS_MUS_SURFACE_CONTEXT_FACTORY_H_ | 5 #ifndef UI_VIEWS_MUS_SURFACE_CONTEXT_FACTORY_H_ |
6 #define UI_VIEWS_MUS_SURFACE_CONTEXT_FACTORY_H_ | 6 #define UI_VIEWS_MUS_SURFACE_CONTEXT_FACTORY_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "services/ui/common/mojo_gpu_memory_buffer_manager.h" | 11 #include "services/ui/public/cpp/mojo_gpu_memory_buffer_manager.h" |
12 #include "services/ui/public/cpp/raster_thread_helper.h" | 12 #include "services/ui/public/cpp/raster_thread_helper.h" |
13 #include "services/ui/public/interfaces/window_tree.mojom.h" | 13 #include "services/ui/public/interfaces/window_tree.mojom.h" |
14 #include "ui/compositor/compositor.h" | 14 #include "ui/compositor/compositor.h" |
15 #include "ui/views/mus/mus_export.h" | 15 #include "ui/views/mus/mus_export.h" |
16 #include "ui/views/mus/surface_binding.h" | 16 #include "ui/views/mus/surface_binding.h" |
17 | 17 |
18 namespace ui { | 18 namespace ui { |
19 class Window; | 19 class Window; |
20 } | 20 } |
21 | 21 |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 uint32_t next_surface_id_namespace_; | 61 uint32_t next_surface_id_namespace_; |
62 ui::RasterThreadHelper raster_thread_helper_; | 62 ui::RasterThreadHelper raster_thread_helper_; |
63 ui::MojoGpuMemoryBufferManager gpu_memory_buffer_manager_; | 63 ui::MojoGpuMemoryBufferManager gpu_memory_buffer_manager_; |
64 | 64 |
65 DISALLOW_COPY_AND_ASSIGN(SurfaceContextFactory); | 65 DISALLOW_COPY_AND_ASSIGN(SurfaceContextFactory); |
66 }; | 66 }; |
67 | 67 |
68 } // namespace views | 68 } // namespace views |
69 | 69 |
70 #endif // UI_VIEWS_MUS_SURFACE_CONTEXT_FACTORY_H_ | 70 #endif // UI_VIEWS_MUS_SURFACE_CONTEXT_FACTORY_H_ |
OLD | NEW |