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

Unified Diff: remoting/host/win/host_service.cc

Issue 121123002: Update uses of UTF conversions in ppapi/, printing/, remoting/, rlz/, sandbox/, skia/, sql/, sync/,… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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
« no previous file with comments | « remoting/host/win/elevated_controller.cc ('k') | remoting/host/win/launch_process_with_token.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/win/host_service.cc
diff --git a/remoting/host/win/host_service.cc b/remoting/host/win/host_service.cc
index 1c7e199e167d4995e1e00340c427dab5085cd64d..8a9ff9e4910d5fa55dced4a82cf50d53484b7fb6 100644
--- a/remoting/host/win/host_service.cc
+++ b/remoting/host/win/host_service.cc
@@ -272,8 +272,9 @@ void HostService::RunAsServiceImpl() {
if (!com_initializer.succeeded())
return;
- if (!InitializeComSecurity(WideToUTF8(kComProcessSd),
- WideToUTF8(kComProcessMandatoryLabel), false)) {
+ if (!InitializeComSecurity(base::WideToUTF8(kComProcessSd),
+ base::WideToUTF8(kComProcessMandatoryLabel),
+ false)) {
return;
}
@@ -308,8 +309,9 @@ int HostService::RunInConsole() {
if (!com_initializer.succeeded())
return result;
- if (!InitializeComSecurity(WideToUTF8(kComProcessSd),
- WideToUTF8(kComProcessMandatoryLabel), false)) {
+ if (!InitializeComSecurity(base::WideToUTF8(kComProcessSd),
+ base::WideToUTF8(kComProcessMandatoryLabel),
+ false)) {
return result;
}
« no previous file with comments | « remoting/host/win/elevated_controller.cc ('k') | remoting/host/win/launch_process_with_token.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698