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

Unified Diff: chrome/browser/local_discovery/wifi/credential_getter_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/local_discovery/wifi/credential_getter_win.cc
diff --git a/chrome/browser/local_discovery/wifi/credential_getter_win.cc b/chrome/browser/local_discovery/wifi/credential_getter_win.cc
index fdd0052ec6b67c71b7bbd89529f8065caff8a416..5ad439bdc292413cfa62f90e971997fcd69d6cdd 100644
--- a/chrome/browser/local_discovery/wifi/credential_getter_win.cc
+++ b/chrome/browser/local_discovery/wifi/credential_getter_win.cc
@@ -5,8 +5,10 @@
#include "chrome/browser/local_discovery/wifi/credential_getter_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"
namespace local_discovery {
@@ -33,6 +35,8 @@ void CredentialGetterWin::StartOnIOThread(const std::string& network_guid) {
DCHECK_CURRENTLY_ON(content::BrowserThread::IO);
content::UtilityProcessHost* host = content::UtilityProcessHost::Create(
this, base::MessageLoopProxy::current());
+ host->SetName(l10n_util::GetStringUTF16(
+ IDS_UTILITY_PROCESS_WIFI_CREDENTIALS_GETTER_NAME));
host->ElevatePrivileges();
host->Send(new ChromeUtilityHostMsg_GetWiFiCredentials(network_guid));
}

Powered by Google App Engine
This is Rietveld 408576698