Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Unified Diff: sql/db_diagnostic_map.h

Issue 2107493002: Offer user to send feedback from profile error dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: wchar_t Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698