#ifndef ANDROID_WEBVIEW_BROWSER_AW_CRASH_KEYS_H_
#define ANDROID_WEBVIEW_BROWSER_AW_CRASH_KEYS_H_
#include <set>
#include <string>
namespace android_webview {
* Adds sets of switches and features as crash keys.
* Features must be formatted "name-of-feature:{enabled/disabled}"
* Note: Only intended to be called from aw_contents_statics. Visible for
* testing purposes.
*/
void SetCrashKeysFromFeaturesAndSwitches(const std::set<std::string>& switches,
const std::set<std::string>& features);
}
#endif