| Index: extensions/browser/blob_holder.cc
|
| diff --git a/extensions/browser/blob_holder.cc b/extensions/browser/blob_holder.cc
|
| index f0146cdff07aa3f67b2725f252a0050be9514d09..94942f799609dfe565330927623482cb83a725a1 100644
|
| --- a/extensions/browser/blob_holder.cc
|
| +++ b/extensions/browser/blob_holder.cc
|
| @@ -8,6 +8,7 @@
|
| #include <utility>
|
|
|
| #include "base/logging.h"
|
| +#include "content/public/browser/bad_message.h"
|
| #include "content/public/browser/blob_handle.h"
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/browser/render_process_host.h"
|
| @@ -77,7 +78,8 @@ void BlobHolder::DropBlobs(const std::vector<std::string>& blob_uuids) {
|
| } else {
|
| DLOG(ERROR) << "Tried to release a Blob we don't have ownership to."
|
| << "UUID: " << *uuid_it;
|
| - render_process_host_->ReceivedBadMessage();
|
| + render_process_host_->ReceivedBadMessage(
|
| + content::BadMessage::BH_BLOB_NOT_OWNED);
|
| }
|
| }
|
| }
|
|
|