| Index: sql/db_diagnostic_map.h
|
| diff --git a/sql/db_diagnostic_map.h b/sql/db_diagnostic_map.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..eb0b3deb8f20fad36e7de33a96f902ff325ad205
|
| --- /dev/null
|
| +++ b/sql/db_diagnostic_map.h
|
| @@ -0,0 +1,18 @@
|
| +// 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 SQL_DB_DIAGNOSTIC_MAP_H_
|
| +#define SQL_DB_DIAGNOSTIC_MAP_H_
|
| +
|
| +#include <map>
|
| +#include <string>
|
| +
|
| +namespace sql {
|
| +
|
| +// Contains key-value pair of diagnostic information about the sql database.
|
| +using DatabaseDiagnosticMap = std::map<std::string, std::string>;
|
| +
|
| +} // namespace sql
|
| +
|
| +#endif // SQL_DB_DIAGNOSTIC_MAP_H_
|
|
|