OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CONTENT_GPU_IN_PROCESS_GPU_THREAD_H_ | 5 #ifndef CONTENT_GPU_IN_PROCESS_GPU_THREAD_H_ |
6 #define CONTENT_GPU_IN_PROCESS_GPU_THREAD_H_ | 6 #define CONTENT_GPU_IN_PROCESS_GPU_THREAD_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/scoped_ptr.h" |
9 #include "base/threading/thread.h" | 10 #include "base/threading/thread.h" |
10 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
11 #include "content/common/in_process_child_thread_params.h" | 12 #include "content/common/in_process_child_thread_params.h" |
12 #include "gpu/command_buffer/service/gpu_preferences.h" | 13 #include "gpu/command_buffer/service/gpu_preferences.h" |
13 | 14 |
14 namespace gpu { | 15 namespace gpu { |
15 struct GpuPreferences; | 16 struct GpuPreferences; |
16 class SyncPointManager; | 17 class SyncPointManager; |
17 } | 18 } |
18 | 19 |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 DISALLOW_COPY_AND_ASSIGN(InProcessGpuThread); | 54 DISALLOW_COPY_AND_ASSIGN(InProcessGpuThread); |
54 }; | 55 }; |
55 | 56 |
56 CONTENT_EXPORT base::Thread* CreateInProcessGpuThread( | 57 CONTENT_EXPORT base::Thread* CreateInProcessGpuThread( |
57 const InProcessChildThreadParams& params, | 58 const InProcessChildThreadParams& params, |
58 const gpu::GpuPreferences& gpu_preferences); | 59 const gpu::GpuPreferences& gpu_preferences); |
59 | 60 |
60 } // namespace content | 61 } // namespace content |
61 | 62 |
62 #endif // CONTENT_GPU_IN_PROCESS_GPU_THREAD_H_ | 63 #endif // CONTENT_GPU_IN_PROCESS_GPU_THREAD_H_ |
OLD | NEW |