OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_GPU_GPU_SERVICE_MUS_H_ | 5 #ifndef SERVICES_UI_GPU_GPU_SERVICE_MUS_H_ |
6 #define COMPONENTS_MUS_GPU_GPU_SERVICE_MUS_H_ | 6 #define SERVICES_UI_GPU_GPU_SERVICE_MUS_H_ |
7 | 7 |
8 #include "base/callback.h" | 8 #include "base/callback.h" |
9 #include "base/synchronization/waitable_event.h" | 9 #include "base/synchronization/waitable_event.h" |
10 #include "base/threading/non_thread_safe.h" | 10 #include "base/threading/non_thread_safe.h" |
11 #include "base/threading/thread.h" | 11 #include "base/threading/thread.h" |
12 #include "build/build_config.h" | 12 #include "build/build_config.h" |
13 #include "gpu/command_buffer/service/gpu_preferences.h" | 13 #include "gpu/command_buffer/service/gpu_preferences.h" |
14 #include "gpu/config/gpu_info.h" | 14 #include "gpu/config/gpu_info.h" |
15 #include "gpu/ipc/client/gpu_channel_host.h" | 15 #include "gpu/ipc/client/gpu_channel_host.h" |
16 #include "gpu/ipc/common/surface_handle.h" | 16 #include "gpu/ipc/common/surface_handle.h" |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 gpu::GpuPreferences gpu_preferences_; | 163 gpu::GpuPreferences gpu_preferences_; |
164 | 164 |
165 // Information about the GPU, such as device and vendor ID. | 165 // Information about the GPU, such as device and vendor ID. |
166 gpu::GPUInfo gpu_info_; | 166 gpu::GPUInfo gpu_info_; |
167 | 167 |
168 DISALLOW_COPY_AND_ASSIGN(GpuServiceMus); | 168 DISALLOW_COPY_AND_ASSIGN(GpuServiceMus); |
169 }; | 169 }; |
170 | 170 |
171 } // namespace mus | 171 } // namespace mus |
172 | 172 |
173 #endif // COMPONENTS_MUS_GPU_GPU_SERVICE_MUS_H_ | 173 #endif // SERVICES_UI_GPU_GPU_SERVICE_MUS_H_ |
OLD | NEW |