| Index: extensions/browser/updater/safe_manifest_parser.cc
|
| diff --git a/extensions/browser/updater/safe_manifest_parser.cc b/extensions/browser/updater/safe_manifest_parser.cc
|
| index f40fc138d43e25036a14da10c671054f013fe020..05c75a955967b7e7560280e96b760136f3a94af2 100644
|
| --- a/extensions/browser/updater/safe_manifest_parser.cc
|
| +++ b/extensions/browser/updater/safe_manifest_parser.cc
|
| @@ -13,6 +13,8 @@
|
| #include "content/public/common/content_switches.h"
|
| #include "extensions/common/extension_utility_messages.h"
|
| #include "ipc/ipc_message_macros.h"
|
| +#include "grit/extensions_strings.h"
|
| +#include "ui/base/l10n/l10n_util.h"
|
|
|
| using content::BrowserThread;
|
|
|
| @@ -45,6 +47,8 @@ void SafeManifestParser::ParseInSandbox() {
|
| content::UtilityProcessHost* host = content::UtilityProcessHost::Create(
|
| this,
|
| BrowserThread::GetMessageLoopProxyForThread(BrowserThread::UI).get());
|
| + host->SetName(
|
| + l10n_util::GetStringUTF16(IDS_UTILITY_PROCESS_MANIFEST_PARSER_NAME));
|
| host->Send(new ExtensionUtilityMsg_ParseUpdateManifest(xml_));
|
| }
|
|
|
|
|