OLD | NEW |
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/host_service_win.h" | 8 #include "remoting/host/host_service_win.h" |
9 | 9 |
10 #include <windows.h> | 10 #include <windows.h> |
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
405 | 405 |
406 default: | 406 default: |
407 return DefWindowProc(hwnd, message, wparam, lparam); | 407 return DefWindowProc(hwnd, message, wparam, lparam); |
408 } | 408 } |
409 } | 409 } |
410 | 410 |
411 } // namespace remoting | 411 } // namespace remoting |
412 | 412 |
413 int main(int argc, char** argv) { | 413 int main(int argc, char** argv) { |
414 // Initializes the crash dump reports. | 414 // Initializes the crash dump reports. |
415 if (remoting::IsCrashReportingEnabled()) { | 415 bool allowed; |
| 416 if (remoting::GetUsageStatsConsent(NULL, &allowed) && allowed) { |
416 remoting::InitializeCrashReporting(); | 417 remoting::InitializeCrashReporting(); |
417 } | 418 } |
418 | 419 |
419 CommandLine::Init(argc, argv); | 420 CommandLine::Init(argc, argv); |
420 | 421 |
421 // This object instance is required by Chrome code (for example, | 422 // This object instance is required by Chrome code (for example, |
422 // FilePath, LazyInstance, MessageLoop). | 423 // FilePath, LazyInstance, MessageLoop). |
423 base::AtExitManager exit_manager; | 424 base::AtExitManager exit_manager; |
424 | 425 |
425 // Write logs to the application profile directory. | 426 // Write logs to the application profile directory. |
(...skipping 14 matching lines...) Expand all Loading... |
440 } | 441 } |
441 | 442 |
442 remoting::HostService* service = remoting::HostService::GetInstance(); | 443 remoting::HostService* service = remoting::HostService::GetInstance(); |
443 if (!service->InitWithCommandLine(command_line)) { | 444 if (!service->InitWithCommandLine(command_line)) { |
444 usage(argv[0]); | 445 usage(argv[0]); |
445 return kUsageExitCode; | 446 return kUsageExitCode; |
446 } | 447 } |
447 | 448 |
448 return service->Run(); | 449 return service->Run(); |
449 } | 450 } |
OLD | NEW |