| OLD | NEW |
| 1 // Copyright (c) 2011 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 CONTENT_COMMON_GPU_INFO_H_ | 5 #ifndef CONTENT_COMMON_GPU_GPU_INFO_H_ |
| 6 #define CONTENT_COMMON_GPU_INFO_H_ | 6 #define CONTENT_COMMON_GPU_GPU_INFO_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 // Provides access to the GPU information for the system | 9 // Provides access to the GPU information for the system |
| 10 // on which chrome is currently running. | 10 // on which chrome is currently running. |
| 11 | 11 |
| 12 #include <string> | 12 #include <string> |
| 13 | 13 |
| 14 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
| 15 #include "base/time.h" | 15 #include "base/time.h" |
| 16 #include "build/build_config.h" | 16 #include "build/build_config.h" |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 // The device semantics, i.e. whether the Vista and Windows 7 specific | 76 // The device semantics, i.e. whether the Vista and Windows 7 specific |
| 77 // semantics are available. | 77 // semantics are available. |
| 78 bool can_lose_context; | 78 bool can_lose_context; |
| 79 | 79 |
| 80 #if defined(OS_WIN) | 80 #if defined(OS_WIN) |
| 81 // The information returned by the DirectX Diagnostics Tool. | 81 // The information returned by the DirectX Diagnostics Tool. |
| 82 DxDiagNode dx_diagnostics; | 82 DxDiagNode dx_diagnostics; |
| 83 #endif | 83 #endif |
| 84 }; | 84 }; |
| 85 | 85 |
| 86 #endif // CONTENT_COMMON_GPU_INFO_H_ | 86 #endif // CONTENT_COMMON_GPU_GPU_INFO_H_ |
| OLD | NEW |