Chromium Code Reviews| Index: gpu/ipc/common/dx_diag_node_struct_traits.h |
| diff --git a/gpu/ipc/common/dx_diag_node_struct_traits.h b/gpu/ipc/common/dx_diag_node_struct_traits.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b1197d4182aa243d97fd37c94b5764b5502e73f4 |
| --- /dev/null |
| +++ b/gpu/ipc/common/dx_diag_node_struct_traits.h |
| @@ -0,0 +1,31 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef GPU_IPC_COMMON_DX_DIAG_NODE_STRUCT_TRAITS_H_ |
| +#define GPU_IPC_COMMON_DX_DIAG_NODE_STRUCT_TRAITS_H_ |
| + |
| +#include "gpu/ipc/common/dx_diag_node.mojom.h" |
| + |
| +namespace mojo { |
| + |
| +template <> |
| +struct StructTraits<gpu::mojom::DxDiagNode, gpu::DxDiagNode> { |
| + static bool Read(gpu::mojom::DxDiagNodeDataView data, gpu::DxDiagNode* out) { |
|
Fady Samuel
2016/07/26 14:43:41
Move this to a cc file?
Alex Z.
2016/07/26 15:28:06
Done.
|
| + return data.ReadValues(&out->values) && data.ReadChildren(&out->children); |
| + } |
| + |
| + static const std::map<std::string, std::string>& values( |
| + const gpu::DxDiagNode& node) { |
| + return node.values; |
| + } |
| + |
| + static const std::map<std::string, gpu::DxDiagNode>& children( |
| + const gpu::DxDiagNode& node) { |
| + return node.children; |
| + } |
| +}; |
| + |
| +} // namespace mojo |
| + |
| +#endif // GPU_IPC_COMMON_DX_DIAG_NODE_STRUCT_TRAITS_H_ |