OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 <windows.h> | 5 #include <windows.h> |
6 #include <shlwapi.h> | 6 #include <shlwapi.h> |
7 | 7 |
8 #include "chrome/app/breakpad_win.h" | 8 #include "chrome/app/breakpad_win.h" |
9 #include "chrome/app/client_util.h" | 9 #include "chrome/app/client_util.h" |
10 #include "chrome/common/chrome_switches.h" | 10 #include "chrome/common/chrome_switches.h" |
11 #include "chrome/common/result_codes.h" | 11 #include "chrome/common/result_codes.h" |
12 #include "chrome/installer/util/browser_distribution.h" | 12 #include "chrome/installer/util/browser_distribution.h" |
13 #include "chrome/installer/util/install_util.h" | 13 #include "chrome/installer/util/install_util.h" |
14 #include "chrome/installer/util/google_update_constants.h" | 14 #include "chrome/installer/util/google_update_constants.h" |
15 #include "chrome/installer/util/util_constants.h" | 15 #include "chrome/installer/util/util_constants.h" |
16 | 16 |
17 namespace { | 17 namespace { |
18 // The entry point signature of chrome.dll. | 18 // The entry point signature of chrome.dll. |
19 typedef int (*DLL_MAIN)(HINSTANCE, sandbox::SandboxInterfaceInfo*, wchar_t*); | 19 typedef int (*DLL_MAIN)(HINSTANCE, sandbox::SandboxInterfaceInfo*, wchar_t*); |
20 | 20 |
21 typedef void (*RelaunchChromeBrowserWithNewCommandLineIfNeededFunc)(); | |
22 | |
23 // Not generic, we only handle strings up to 128 chars. | 21 // Not generic, we only handle strings up to 128 chars. |
24 bool ReadRegistryStr(HKEY key, const wchar_t* name, std::wstring* value) { | 22 bool ReadRegistryStr(HKEY key, const wchar_t* name, std::wstring* value) { |
25 BYTE out[128 * sizeof(wchar_t)]; | 23 BYTE out[128 * sizeof(wchar_t)]; |
26 DWORD size = sizeof(out); | 24 DWORD size = sizeof(out); |
27 DWORD type = 0; | 25 DWORD type = 0; |
28 if (ERROR_SUCCESS != ::RegQueryValueExW(key, name, NULL, &type, out, &size)) | 26 if (ERROR_SUCCESS != ::RegQueryValueExW(key, name, NULL, &type, out, &size)) |
29 return false; | 27 return false; |
30 if (type != REG_SZ) | 28 if (type != REG_SZ) |
31 return false; | 29 return false; |
32 value->assign(reinterpret_cast<wchar_t*>(out)); | 30 value->assign(reinterpret_cast<wchar_t*>(out)); |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 | 189 |
192 DLL_MAIN entry_point = | 190 DLL_MAIN entry_point = |
193 reinterpret_cast<DLL_MAIN>(::GetProcAddress(dll_, "ChromeMain")); | 191 reinterpret_cast<DLL_MAIN>(::GetProcAddress(dll_, "ChromeMain")); |
194 if (!entry_point) | 192 if (!entry_point) |
195 return ResultCodes::BAD_PROCESS_TYPE; | 193 return ResultCodes::BAD_PROCESS_TYPE; |
196 | 194 |
197 int rc = entry_point(instance, sbox_info, ::GetCommandLineW()); | 195 int rc = entry_point(instance, sbox_info, ::GetCommandLineW()); |
198 return OnBeforeExit(rc); | 196 return OnBeforeExit(rc); |
199 } | 197 } |
200 | 198 |
201 void MainDllLoader::RelaunchChromeBrowserWithNewCommandLineIfNeeded() { | |
202 RelaunchChromeBrowserWithNewCommandLineIfNeededFunc relaunch_function = | |
203 reinterpret_cast<RelaunchChromeBrowserWithNewCommandLineIfNeededFunc>( | |
204 ::GetProcAddress(dll_, | |
205 "RelaunchChromeBrowserWithNewCommandLineIfNeeded")); | |
206 if (!relaunch_function) { | |
207 LOG(ERROR) << "Could not find exported function " | |
208 << "RelaunchChromeBrowserWithNewCommandLineIfNeeded"; | |
209 } else { | |
210 relaunch_function(); | |
211 } | |
212 } | |
213 | |
214 //============================================================================= | 199 //============================================================================= |
215 | 200 |
216 class ChromeDllLoader : public MainDllLoader { | 201 class ChromeDllLoader : public MainDllLoader { |
217 public: | 202 public: |
218 virtual std::wstring GetRegistryPath() { | 203 virtual std::wstring GetRegistryPath() { |
219 std::wstring key(google_update::kRegPathClients); | 204 std::wstring key(google_update::kRegPathClients); |
220 BrowserDistribution* dist = BrowserDistribution::GetDistribution(); | 205 BrowserDistribution* dist = BrowserDistribution::GetDistribution(); |
221 key.append(L"\\").append(dist->GetAppGuid()); | 206 key.append(L"\\").append(dist->GetAppGuid()); |
222 return key; | 207 return key; |
223 } | 208 } |
(...skipping 25 matching lines...) Expand all Loading... |
249 } | 234 } |
250 }; | 235 }; |
251 | 236 |
252 MainDllLoader* MakeMainDllLoader() { | 237 MainDllLoader* MakeMainDllLoader() { |
253 #if defined(GOOGLE_CHROME_BUILD) | 238 #if defined(GOOGLE_CHROME_BUILD) |
254 return new ChromeDllLoader(); | 239 return new ChromeDllLoader(); |
255 #else | 240 #else |
256 return new ChromiumDllLoader(); | 241 return new ChromiumDllLoader(); |
257 #endif | 242 #endif |
258 } | 243 } |
OLD | NEW |