summaryrefslogtreecommitdiff
path: root/libcef/common/cef_crash_report_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'libcef/common/cef_crash_report_utils.h')
-rw-r--r--libcef/common/cef_crash_report_utils.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/libcef/common/cef_crash_report_utils.h b/libcef/common/cef_crash_report_utils.h
new file mode 100644
index 00000000..ef9102ee
--- /dev/null
+++ b/libcef/common/cef_crash_report_utils.h
@@ -0,0 +1,19 @@
+// Copyright 2018 The Chromium Embedded Framework 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 CEF_LIBCEF_COMMON_CEF_CRASH_REPORT_UTILS_H_
+#define CEF_LIBCEF_COMMON_CEF_CRASH_REPORT_UTILS_H_
+
+#include <map>
+#include <string>
+
+namespace crash_report_utils {
+
+using ParameterMap = std::map<std::string, std::string>;
+
+ParameterMap FilterParameters(const ParameterMap& parameters);
+
+} // namespace crash_report_utils
+
+#endif // CEF_LIBCEF_COMMON_CEF_CRASH_REPORT_UTILS_H_