Chromium Code Reviews| Index: chrome/installer/util/shell_util.cc |
| =================================================================== |
| --- chrome/installer/util/shell_util.cc (revision 145189) |
| +++ chrome/installer/util/shell_util.cc (working copy) |
| @@ -158,7 +158,8 @@ |
| ShellUtil::kRegVerbOpen)); |
| const wchar_t* const verbs[] = { ShellUtil::kRegVerbOpen, |
| - ShellUtil::kRegVerbRun }; |
| + ShellUtil::kRegVerbRun, |
| + ShellUtil::kRegVerbOpenNewWindow}; |
|
gab
2012/07/03 21:03:41
here as well.
gab
2012/07/03 21:06:34
nit: Add space before '}'
ananta
2012/07/03 21:06:46
Done.
|
| for (size_t i = 0; i < arraysize(verbs); ++i) { |
| string16 sub_path(model_id_shell); |
| sub_path.push_back(FilePath::kSeparators[0]); |
| @@ -838,6 +839,7 @@ |
| const wchar_t* ShellUtil::kRegExePath = L"\\.exe"; |
| const wchar_t* ShellUtil::kRegVerbOpen = L"open"; |
| const wchar_t* ShellUtil::kRegVerbRun = L"run"; |
| +const wchar_t* ShellUtil::kRegVerbOpenNewWindow = L"opennewwindow"; |
|
gab
2012/07/03 21:03:41
and here too.
ananta
2012/07/03 21:06:46
Done.
|
| const wchar_t* ShellUtil::kRegCommand = L"command"; |
| const wchar_t* ShellUtil::kRegDelegateExecute = L"DelegateExecute"; |