| 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;
|
| }
|
|
|
|
|