Update to Chromium revision bc084a8b (#530369)

This commit is contained in:
Marshall Greenblatt
2018-02-14 19:12:09 -05:00
parent ac86b61139
commit 9e644b7538
113 changed files with 1930 additions and 1797 deletions

View File

@@ -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_