| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Multiply-included message file, hence no include guard here, but see below | 5 // Multiply-included message file, hence no include guard here, but see below |
| 6 // for a much smaller-than-usual include guard section. | 6 // for a much smaller-than-usual include guard section. |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 IPC_STRUCT_TRAITS_MEMBER(vendor_id) | 104 IPC_STRUCT_TRAITS_MEMBER(vendor_id) |
| 105 IPC_STRUCT_TRAITS_MEMBER(device_id) | 105 IPC_STRUCT_TRAITS_MEMBER(device_id) |
| 106 IPC_STRUCT_TRAITS_MEMBER(vendor_string) | 106 IPC_STRUCT_TRAITS_MEMBER(vendor_string) |
| 107 IPC_STRUCT_TRAITS_MEMBER(device_string) | 107 IPC_STRUCT_TRAITS_MEMBER(device_string) |
| 108 IPC_STRUCT_TRAITS_END() | 108 IPC_STRUCT_TRAITS_END() |
| 109 | 109 |
| 110 IPC_STRUCT_TRAITS_BEGIN(content::GPUInfo) | 110 IPC_STRUCT_TRAITS_BEGIN(content::GPUInfo) |
| 111 IPC_STRUCT_TRAITS_MEMBER(finalized) | 111 IPC_STRUCT_TRAITS_MEMBER(finalized) |
| 112 IPC_STRUCT_TRAITS_MEMBER(initialization_time) | 112 IPC_STRUCT_TRAITS_MEMBER(initialization_time) |
| 113 IPC_STRUCT_TRAITS_MEMBER(optimus) | 113 IPC_STRUCT_TRAITS_MEMBER(optimus) |
| 114 IPC_STRUCT_TRAITS_MEMBER(amd_switchable) |
| 114 IPC_STRUCT_TRAITS_MEMBER(gpu) | 115 IPC_STRUCT_TRAITS_MEMBER(gpu) |
| 115 IPC_STRUCT_TRAITS_MEMBER(secondary_gpus) | 116 IPC_STRUCT_TRAITS_MEMBER(secondary_gpus) |
| 116 IPC_STRUCT_TRAITS_MEMBER(driver_vendor) | 117 IPC_STRUCT_TRAITS_MEMBER(driver_vendor) |
| 117 IPC_STRUCT_TRAITS_MEMBER(driver_version) | 118 IPC_STRUCT_TRAITS_MEMBER(driver_version) |
| 118 IPC_STRUCT_TRAITS_MEMBER(driver_date) | 119 IPC_STRUCT_TRAITS_MEMBER(driver_date) |
| 119 IPC_STRUCT_TRAITS_MEMBER(pixel_shader_version) | 120 IPC_STRUCT_TRAITS_MEMBER(pixel_shader_version) |
| 120 IPC_STRUCT_TRAITS_MEMBER(vertex_shader_version) | 121 IPC_STRUCT_TRAITS_MEMBER(vertex_shader_version) |
| 121 IPC_STRUCT_TRAITS_MEMBER(gl_version) | 122 IPC_STRUCT_TRAITS_MEMBER(gl_version) |
| 122 IPC_STRUCT_TRAITS_MEMBER(gl_version_string) | 123 IPC_STRUCT_TRAITS_MEMBER(gl_version_string) |
| 123 IPC_STRUCT_TRAITS_MEMBER(gl_vendor) | 124 IPC_STRUCT_TRAITS_MEMBER(gl_vendor) |
| (...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 | 516 |
| 516 // Confirm decoder has been flushed. | 517 // Confirm decoder has been flushed. |
| 517 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone) | 518 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone) |
| 518 | 519 |
| 519 // Confirm decoder has been reset. | 520 // Confirm decoder has been reset. |
| 520 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone) | 521 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone) |
| 521 | 522 |
| 522 // Video decoder has encountered an error. | 523 // Video decoder has encountered an error. |
| 523 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification, | 524 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification, |
| 524 uint32) /* Error ID */ | 525 uint32) /* Error ID */ |
| OLD | NEW |