mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			569 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			569 B
		
	
	
	
		
			C++
		
	
	
	
	
	
// 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_
 |