| 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 #include <atlbase.h> | 5 #include <atlbase.h> |
| 6 #include <atlcom.h> | 6 #include <atlcom.h> |
| 7 #include <atlctl.h> | 7 #include <atlctl.h> |
| 8 | 8 |
| 9 #include "base/at_exit.h" | 9 #include "base/at_exit.h" |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| 11 #include "base/file_path.h" | 11 #include "base/file_path.h" |
| 12 #include "base/logging.h" | 12 #include "base/logging.h" |
| 13 #include "remoting/base/breakpad.h" | 13 #include "remoting/base/breakpad.h" |
| 14 #include "remoting/host/branding.h" | 14 #include "remoting/host/branding.h" |
| 15 #include "remoting/host/breakpad.h" | 15 #include "remoting/host/usage_stats_consent.h" |
| 16 | 16 |
| 17 // MIDL-generated declarations. | 17 // MIDL-generated declarations. |
| 18 #include "remoting/host/elevated_controller.h" | 18 #include "remoting/host/elevated_controller.h" |
| 19 | 19 |
| 20 namespace remoting { | 20 namespace remoting { |
| 21 | 21 |
| 22 class ElevatedControllerModuleWin | 22 class ElevatedControllerModuleWin |
| 23 : public ATL::CAtlExeModuleT<ElevatedControllerModuleWin> { | 23 : public ATL::CAtlExeModuleT<ElevatedControllerModuleWin> { |
| 24 public: | 24 public: |
| 25 DECLARE_LIBID(LIBID_ChromotingElevatedControllerLib) | 25 DECLARE_LIBID(LIBID_ChromotingElevatedControllerLib) |
| 26 }; | 26 }; |
| 27 | 27 |
| 28 } // namespace remoting | 28 } // namespace remoting |
| 29 | 29 |
| 30 | 30 |
| 31 remoting::ElevatedControllerModuleWin _AtlModule; | 31 remoting::ElevatedControllerModuleWin _AtlModule; |
| 32 | 32 |
| 33 int WINAPI WinMain(HINSTANCE instance, HINSTANCE, LPSTR, int command) { | 33 int WINAPI WinMain(HINSTANCE instance, HINSTANCE, LPSTR, int command) { |
| 34 // Initializes the crash dump reports. | |
| 35 if (remoting::IsCrashReportingEnabled()) { | 34 if (remoting::IsCrashReportingEnabled()) { |
| 36 remoting::InitializeCrashReporting(); | 35 remoting::InitializeCrashReporting(); |
| 37 } | 36 } |
| 38 | 37 |
| 39 CommandLine::Init(0, NULL); | 38 CommandLine::Init(0, NULL); |
| 40 | 39 |
| 41 // Register and initialize common controls. | 40 // Register and initialize common controls. |
| 42 INITCOMMONCONTROLSEX info; | 41 INITCOMMONCONTROLSEX info; |
| 43 info.dwSize = sizeof(info); | 42 info.dwSize = sizeof(info); |
| 44 info.dwICC = ICC_STANDARD_CLASSES; | 43 info.dwICC = ICC_STANDARD_CLASSES; |
| 45 InitCommonControlsEx(&info); | 44 InitCommonControlsEx(&info); |
| 46 | 45 |
| 47 // This object instance is required by Chrome code (for example, | 46 // This object instance is required by Chrome code (for example, |
| 48 // FilePath, LazyInstance, MessageLoop). | 47 // FilePath, LazyInstance, MessageLoop). |
| 49 base::AtExitManager exit_manager; | 48 base::AtExitManager exit_manager; |
| 50 | 49 |
| 51 // Write logs to the application profile directory. | 50 // Write logs to the application profile directory. |
| 52 FilePath debug_log = remoting::GetConfigDir(). | 51 FilePath debug_log = remoting::GetConfigDir(). |
| 53 Append(FILE_PATH_LITERAL("debug.log")); | 52 Append(FILE_PATH_LITERAL("debug.log")); |
| 54 InitLogging(debug_log.value().c_str(), | 53 InitLogging(debug_log.value().c_str(), |
| 55 logging::LOG_ONLY_TO_FILE, | 54 logging::LOG_ONLY_TO_FILE, |
| 56 logging::DONT_LOCK_LOG_FILE, | 55 logging::DONT_LOCK_LOG_FILE, |
| 57 logging::APPEND_TO_OLD_LOG_FILE, | 56 logging::APPEND_TO_OLD_LOG_FILE, |
| 58 logging::DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS); | 57 logging::DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS); |
| 59 | 58 |
| 60 return _AtlModule.WinMain(command); | 59 return _AtlModule.WinMain(command); |
| 61 } | 60 } |
| OLD | NEW |