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

Side by Side Diff: remoting/host/win/host_service.cc

Issue 810133003: replace NULL->nullptr in src/remoting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 unified diff | Download patch
« no previous file with comments | « remoting/host/win/entry_point.cc ('k') | remoting/host/win/launch_process_with_token.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // This file implements the Windows service controlling Me2Me host processes 5 // This file implements the Windows service controlling Me2Me host processes
6 // running within user sessions. 6 // running within user sessions.
7 7
8 #include "remoting/host/win/host_service.h" 8 #include "remoting/host/win/host_service.h"
9 9
10 #include <sddl.h> 10 #include <sddl.h>
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 213
214 daemon_process_ = DaemonProcess::Create( 214 daemon_process_ = DaemonProcess::Create(
215 task_runner, 215 task_runner,
216 io_task_runner, 216 io_task_runner,
217 base::Bind(&HostService::StopDaemonProcess, weak_ptr_)); 217 base::Bind(&HostService::StopDaemonProcess, weak_ptr_));
218 } 218 }
219 219
220 int HostService::RunAsService() { 220 int HostService::RunAsService() {
221 SERVICE_TABLE_ENTRYW dispatch_table[] = { 221 SERVICE_TABLE_ENTRYW dispatch_table[] = {
222 { const_cast<LPWSTR>(kWindowsServiceName), &HostService::ServiceMain }, 222 { const_cast<LPWSTR>(kWindowsServiceName), &HostService::ServiceMain },
223 { NULL, NULL } 223 { nullptr, nullptr }
224 }; 224 };
225 225
226 if (!StartServiceCtrlDispatcherW(dispatch_table)) { 226 if (!StartServiceCtrlDispatcherW(dispatch_table)) {
227 PLOG(ERROR) << "Failed to connect to the service control manager"; 227 PLOG(ERROR) << "Failed to connect to the service control manager";
228 return kInitializationFailed; 228 return kInitializationFailed;
229 } 229 }
230 230
231 // Wait until the service thread completely exited to avoid concurrent 231 // Wait until the service thread completely exited to avoid concurrent
232 // teardown of objects registered with base::AtExitManager and object 232 // teardown of objects registered with base::AtExitManager and object
233 // destoyed by the service thread. 233 // destoyed by the service thread.
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 int DaemonProcessMain() { 434 int DaemonProcessMain() {
435 HostService* service = HostService::GetInstance(); 435 HostService* service = HostService::GetInstance();
436 if (!service->InitWithCommandLine(base::CommandLine::ForCurrentProcess())) { 436 if (!service->InitWithCommandLine(base::CommandLine::ForCurrentProcess())) {
437 return kUsageExitCode; 437 return kUsageExitCode;
438 } 438 }
439 439
440 return service->Run(); 440 return service->Run();
441 } 441 }
442 442
443 } // namespace remoting 443 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/win/entry_point.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