| OLD | NEW |
| 1 // Copyright (c) 2006-2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_INFO_COLLECTOR_H__ | 5 #ifndef CONTENT_GPU_GPU_INFO_COLLECTOR_H_ |
| 6 #define CHROME_GPU_GPU_INFO_COLLECTOR_H__ | 6 #define CONTENT_GPU_GPU_INFO_COLLECTOR_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| 11 #include "content/common/gpu_info.h" | 11 #include "content/common/gpu_info.h" |
| 12 | 12 |
| 13 struct IDirect3D9; | 13 struct IDirect3D9; |
| 14 | 14 |
| 15 namespace gpu_info_collector { | 15 namespace gpu_info_collector { |
| 16 | 16 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 47 bool CollectGLVersionInfo(GPUInfo* gpu_info); | 47 bool CollectGLVersionInfo(GPUInfo* gpu_info); |
| 48 | 48 |
| 49 // Platform specific method for collecting vendor and device ids | 49 // Platform specific method for collecting vendor and device ids |
| 50 bool CollectVideoCardInfo(GPUInfo* gpu_info); | 50 bool CollectVideoCardInfo(GPUInfo* gpu_info); |
| 51 | 51 |
| 52 // Each platform stores the driver version on the GL_VERSION string differently | 52 // Each platform stores the driver version on the GL_VERSION string differently |
| 53 bool CollectDriverInfoGL(GPUInfo* gpu_info); | 53 bool CollectDriverInfoGL(GPUInfo* gpu_info); |
| 54 | 54 |
| 55 } // namespace gpu_info_collector | 55 } // namespace gpu_info_collector |
| 56 | 56 |
| 57 #endif // CHROME_GPU_GPU_INFO_COLLECTOR_H__ | 57 #endif // CONTENT_GPU_GPU_INFO_COLLECTOR_H_ |
| OLD | NEW |