| 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/threading/thread.h" | 9 #include "base/threading/thread.h" |
| 9 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
| 10 #include "content/common/in_process_child_thread_params.h" | 11 #include "content/common/in_process_child_thread_params.h" |
| 11 | 12 |
| 12 namespace gpu { | 13 namespace gpu { |
| 13 class SyncPointManager; | 14 class SyncPointManager; |
| 14 } | 15 } |
| 15 | 16 |
| 16 namespace content { | 17 namespace content { |
| 17 | 18 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 46 | 47 |
| 47 DISALLOW_COPY_AND_ASSIGN(InProcessGpuThread); | 48 DISALLOW_COPY_AND_ASSIGN(InProcessGpuThread); |
| 48 }; | 49 }; |
| 49 | 50 |
| 50 CONTENT_EXPORT base::Thread* CreateInProcessGpuThread( | 51 CONTENT_EXPORT base::Thread* CreateInProcessGpuThread( |
| 51 const InProcessChildThreadParams& params); | 52 const InProcessChildThreadParams& params); |
| 52 | 53 |
| 53 } // namespace content | 54 } // namespace content |
| 54 | 55 |
| 55 #endif // CONTENT_GPU_IN_PROCESS_GPU_THREAD_H_ | 56 #endif // CONTENT_GPU_IN_PROCESS_GPU_THREAD_H_ |
| OLD | NEW |