| Index: extensions/browser/extension_host.cc
|
| diff --git a/extensions/browser/extension_host.cc b/extensions/browser/extension_host.cc
|
| index bbf51ef4913b41b8d784b07c8eae28e7ed6eebad..45a4dc0d199dd882af11f38bdcfa734c1ac86058 100644
|
| --- a/extensions/browser/extension_host.cc
|
| +++ b/extensions/browser/extension_host.cc
|
| @@ -10,6 +10,7 @@
|
| #include "base/profiler/scoped_tracker.h"
|
| #include "base/strings/string_util.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| +#include "content/public/browser/bad_message.h"
|
| #include "content/public/browser/browser_context.h"
|
| #include "content/public/browser/content_browser_client.h"
|
| #include "content/public/browser/native_web_keyboard_event.h"
|
| @@ -367,7 +368,8 @@ void ExtensionHost::OnEventAck(int event_id) {
|
| DCHECK(render_process_host());
|
| LOG(ERROR) << "Killing renderer for extension " << extension_id() << " for "
|
| << "sending an EventAck message with a bad event id.";
|
| - render_process_host()->ReceivedBadMessage();
|
| + render_process_host()->ReceivedBadMessage(
|
| + content::BadMessage::EH_BAD_EVENT_ID);
|
| }
|
| }
|
|
|
|
|