OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_GPU_GPU_THREAD_H_ | 5 #ifndef CHROME_GPU_GPU_THREAD_H_ |
6 #define CHROME_GPU_GPU_THREAD_H_ | 6 #define CHROME_GPU_GPU_THREAD_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/command_line.h" | 12 #include "base/command_line.h" |
13 #include "base/scoped_ptr.h" | 13 #include "base/scoped_ptr.h" |
14 #include "base/time.h" | 14 #include "base/time.h" |
15 #include "build/build_config.h" | 15 #include "build/build_config.h" |
16 #include "chrome/common/gpu_info.h" | |
17 #include "chrome/gpu/gpu_channel.h" | 16 #include "chrome/gpu/gpu_channel.h" |
18 #include "chrome/gpu/gpu_config.h" | 17 #include "chrome/gpu/gpu_config.h" |
19 #include "chrome/gpu/x_util.h" | 18 #include "chrome/gpu/x_util.h" |
20 #include "content/common/child_thread.h" | 19 #include "content/common/child_thread.h" |
| 20 #include "content/common/gpu_info.h" |
21 #include "ui/gfx/native_widget_types.h" | 21 #include "ui/gfx/native_widget_types.h" |
22 | 22 |
23 namespace IPC { | 23 namespace IPC { |
24 struct ChannelHandle; | 24 struct ChannelHandle; |
25 } | 25 } |
26 | 26 |
27 namespace sandbox { | 27 namespace sandbox { |
28 class TargetServices; | 28 class TargetServices; |
29 } | 29 } |
30 | 30 |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 | 88 |
89 #if defined(OS_WIN) | 89 #if defined(OS_WIN) |
90 // Windows specific client sandbox interface. | 90 // Windows specific client sandbox interface. |
91 sandbox::TargetServices* target_services_; | 91 sandbox::TargetServices* target_services_; |
92 #endif | 92 #endif |
93 | 93 |
94 DISALLOW_COPY_AND_ASSIGN(GpuThread); | 94 DISALLOW_COPY_AND_ASSIGN(GpuThread); |
95 }; | 95 }; |
96 | 96 |
97 #endif // CHROME_GPU_GPU_THREAD_H_ | 97 #endif // CHROME_GPU_GPU_THREAD_H_ |
OLD | NEW |