| Index: chrome/browser/image_decoder.cc
|
| diff --git a/chrome/browser/image_decoder.cc b/chrome/browser/image_decoder.cc
|
| index 9e21662088f5ab09a5cd61b71057da235bb6fe24..5fa095b0534d825a77bc373a0d9bccf241129206 100644
|
| --- a/chrome/browser/image_decoder.cc
|
| +++ b/chrome/browser/image_decoder.cc
|
| @@ -7,8 +7,10 @@
|
| #include "base/bind.h"
|
| #include "chrome/browser/browser_process.h"
|
| #include "chrome/common/chrome_utility_messages.h"
|
| +#include "chrome/grit/generated_resources.h"
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/browser/utility_process_host.h"
|
| +#include "ui/base/l10n/l10n_util.h"
|
|
|
| using content::BrowserThread;
|
| using content::UtilityProcessHost;
|
| @@ -127,6 +129,8 @@ void ImageDecoder::StartBatchMode() {
|
| utility_process_host_ =
|
| UtilityProcessHost::Create(this, base::MessageLoopProxy::current().get())
|
| ->AsWeakPtr();
|
| + utility_process_host_->SetName(l10n_util::GetStringUTF16(
|
| + IDS_UTILITY_PROCESS_PROXY_RESOLVER_NAME));
|
| if (!utility_process_host_->StartBatchMode()) {
|
| utility_process_host_.reset();
|
| return;
|
|
|