Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2891)

Unified Diff: chrome/browser/media_galleries/fileapi/safe_itunes_pref_parser_win.cc

Issue 1062873003: Give names to all utility processes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix typos Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/media_galleries/fileapi/safe_itunes_pref_parser_win.cc
diff --git a/chrome/browser/media_galleries/fileapi/safe_itunes_pref_parser_win.cc b/chrome/browser/media_galleries/fileapi/safe_itunes_pref_parser_win.cc
index 7d7282eb9c55114c18613e538d1942cc6f203459..71965bc0a08450acb00ffaa5e8a2294578d782d4 100644
--- a/chrome/browser/media_galleries/fileapi/safe_itunes_pref_parser_win.cc
+++ b/chrome/browser/media_galleries/fileapi/safe_itunes_pref_parser_win.cc
@@ -5,8 +5,10 @@
#include "chrome/browser/media_galleries/fileapi/safe_itunes_pref_parser_win.h"
#include "chrome/common/extensions/chrome_utility_extensions_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;
@@ -40,6 +42,8 @@ void SafeITunesPrefParserWin::StartWorkOnIOThread() {
UtilityProcessHost* host =
UtilityProcessHost::Create(this, base::MessageLoopProxy::current());
+ host->SetName(l10n_util::GetStringUTF16(
+ IDS_UTILITY_PROCESS_MEDIA_LIBRARY_FILE_CHECKER_NAME));
host->Send(new ChromeUtilityMsg_ParseITunesPrefXml(unsafe_xml_));
parser_state_ = STARTED_PARSING_STATE;
}

Powered by Google App Engine
This is Rietveld 408576698