Index: chrome/installer/mini_installer/mini_installer.cc |
=================================================================== |
--- chrome/installer/mini_installer/mini_installer.cc (revision 50874) |
+++ chrome/installer/mini_installer/mini_installer.cc (working copy) |
@@ -153,11 +153,14 @@ |
const wchar_t* app_guid = google_update::kAppGuid; |
int args_num; |
+ |
wchar_t* cmd_line = ::GetCommandLine(); |
wchar_t** args = ::CommandLineToArgvW(cmd_line, &args_num); |
for (int i = 1; i < args_num; ++i) { |
if (0 == ::lstrcmpi(args[i], L"--chrome-sxs")) |
app_guid = google_update::kSxSAppGuid; |
+ else if (0 == ::lstrcmpi(args[i], L"--chrome-frame")) |
+ app_guid = google_update::kChromeFrameAppGuid; |
} |
if (!SafeStrCopy(ap_registry_key, _countof(ap_registry_key), |