summaryrefslogtreecommitdiffstats
path: root/chrome/common/dx_diag_node.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/dx_diag_node.h')
-rw-r--r--chrome/common/dx_diag_node.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/chrome/common/dx_diag_node.h b/chrome/common/dx_diag_node.h
deleted file mode 100644
index 9f20d92..0000000
--- a/chrome/common/dx_diag_node.h
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright (c) 2010 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.
-//
-// A tree of name value pairs that report contain DirectX diagnostic
-// information.
-
-#ifndef CHROME_COMMON_DX_DIAG_NODE_H_
-#define CHROME_COMMON_DX_DIAG_NODE_H_
-
-#include <map>
-#include <string>
-
-struct DxDiagNode {
- std::map<std::string, std::string> values;
- std::map<std::string, DxDiagNode> children;
-};
-
-#endif // CHROME_COMMON_DX_DIAG_NODE_H_