diff options
Diffstat (limited to 'chrome/common/gpu_info.h')
-rw-r--r-- | chrome/common/gpu_info.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/chrome/common/gpu_info.h b/chrome/common/gpu_info.h index 50728db..2f8f9da 100644 --- a/chrome/common/gpu_info.h +++ b/chrome/common/gpu_info.h @@ -12,8 +12,6 @@ #include <string> #include "base/basictypes.h" -#include "build/build_config.h" -#include "chrome/common/dx_diag_node.h" class GPUInfo { public: @@ -62,14 +60,6 @@ class GPUInfo { uint32 vertex_shader_version, uint32 gl_version, bool can_lose_context); - -#if defined(OS_WIN) - // The information returned by the DirectX Diagnostics Tool. - const DxDiagNode& dx_diagnostics() const; - - void SetDxDiagnostics(const DxDiagNode& dx_diagnostics); -#endif - private: bool initialized_; uint32 vendor_id_; @@ -79,10 +69,6 @@ class GPUInfo { uint32 vertex_shader_version_; uint32 gl_version_; bool can_lose_context_; - -#if defined(OS_WIN) - DxDiagNode dx_diagnostics_; -#endif }; #endif // CHROME_COMMON_GPU_INFO_H__ |