Chromium Code Reviews| 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 defines utility functions that can report details about the | 5 // This file defines a class to load the main DLL of a Chrome process. |
| 6 // host operating environment. | |
| 7 | 6 |
| 8 #ifndef CHROME_APP_CLIENT_UTIL_H_ | 7 #ifndef CHROME_APP_MAIN_DLL_LOADER_WIN_H_ |
| 9 #define CHROME_APP_CLIENT_UTIL_H_ | 8 #define CHROME_APP_MAIN_DLL_LOADER_WIN_H_ |
| 10 | 9 |
| 11 #include <windows.h> | 10 #include <windows.h> |
| 12 | 11 |
| 13 #include <string> | 12 #include <string> |
| 13 #include "base/files/file_path.h" | |
| 14 #include "base/strings/string16.h" | 14 #include "base/strings/string16.h" |
| 15 | 15 |
| 16 namespace sandbox { | 16 namespace sandbox { |
| 17 struct SandboxInterfaceInfo; | 17 struct SandboxInterfaceInfo; |
|
grt (UTC plus 2)
2015/10/29 18:51:50
unused
fdoray
2015/10/30 14:45:45
Done.
| |
| 18 } | 18 } |
| 19 | 19 |
| 20 // Returns the version in the current module's version resource or the empty | |
| 21 // string if none found. | |
| 22 base::string16 GetCurrentModuleVersion(); | |
| 23 | |
| 24 // Implements the common aspects of loading the main dll for both chrome and | 20 // Implements the common aspects of loading the main dll for both chrome and |
| 25 // chromium scenarios, which are in charge of implementing two abstract | 21 // chromium scenarios, which are in charge of implementing two abstract |
| 26 // methods: GetRegistryPath() and OnBeforeLaunch(). | 22 // methods: GetRegistryPath() and OnBeforeLaunch(). |
| 27 class MainDllLoader { | 23 class MainDllLoader { |
| 28 public: | 24 public: |
| 29 MainDllLoader(); | 25 MainDllLoader(); |
| 30 virtual ~MainDllLoader(); | 26 virtual ~MainDllLoader(); |
| 31 | 27 |
| 32 // Loads and calls the entry point of chrome.dll. |instance| is the exe | 28 // Loads and calls the entry point of chrome.dll. |instance| is the exe |
| 33 // instance retrieved from wWinMain. | 29 // instance retrieved from wWinMain. |
| (...skipping 28 matching lines...) Expand all Loading... | |
| 62 private: | 58 private: |
| 63 HMODULE dll_; | 59 HMODULE dll_; |
| 64 std::string process_type_; | 60 std::string process_type_; |
| 65 const bool metro_mode_; | 61 const bool metro_mode_; |
| 66 }; | 62 }; |
| 67 | 63 |
| 68 // Factory for the MainDllLoader. Caller owns the pointer and should call | 64 // Factory for the MainDllLoader. Caller owns the pointer and should call |
| 69 // delete to free it. | 65 // delete to free it. |
| 70 MainDllLoader* MakeMainDllLoader(); | 66 MainDllLoader* MakeMainDllLoader(); |
| 71 | 67 |
| 72 #endif // CHROME_APP_CLIENT_UTIL_H_ | 68 #endif // CHROME_APP_MAIN_DLL_LOADER_WIN_H_ |
| OLD | NEW |