#include "extensions/browser/bad_message.h"
#include "base/debug/crash_logging.h"
#include "base/logging.h"
#include "base/metrics/histogram_functions.h"
#include "base/strings/string_number_conversions.h"
#include "content/public/browser/render_process_host.h"
namespace extensions {
namespace bad_message {
namespace {
void LogBadMessage(BadMessageReason reason) { … }
base::debug::CrashKeyString* GetBadMessageCrashKey() { … }
}
void ReceivedBadMessage(content::RenderProcessHost* host,
BadMessageReason reason) { … }
void ReceivedBadMessage(int render_process_id, BadMessageReason reason) { … }
}
}