1 // Copyright 2018 The Chromium Embedded Framework Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef CEF_LIBCEF_COMMON_CEF_CRASH_REPORT_UTILS_H_ 6 #define CEF_LIBCEF_COMMON_CEF_CRASH_REPORT_UTILS_H_ 7 8 #include <map> 9 #include <string> 10 11 namespace crash_report_utils { 12 13 using ParameterMap = std::map<std::string, std::string>; 14 15 ParameterMap FilterParameters(const ParameterMap& parameters); 16 17 } // namespace crash_report_utils 18 19 #endif // CEF_LIBCEF_COMMON_CEF_CRASH_REPORT_UTILS_H_ 20