Chromium Code Reviews| Index: chrome/installer/util/shell_util.h |
| =================================================================== |
| --- chrome/installer/util/shell_util.h (revision 149222) |
| +++ chrome/installer/util/shell_util.h (working copy) |
| @@ -439,6 +439,15 @@ |
| // bytes. |
| static string16 ByteArrayToBase32(const uint8* bytes, size_t size); |
| + // Verify that a shortcut exists with expected information (for testing) |
|
gab
2012/08/07 19:18:25
s/with/with the/
Remove "(for testing)".
Add '.'
Halli
2012/08/07 20:52:16
Done.
|
| + // |exe_path| shortcut's exe |
| + // |shortcut| path to shortcut |
| + // |description| shortcut's description |
| + // |icon_index| in master prefs |
|
Halli
2012/08/07 17:16:52
I got presubmit warnings about using wide strings,
gab
2012/08/07 19:18:25
No, replace all std::wstring by string16.
gab
2012/08/07 19:18:25
|icon_index| The icon's index in the exe.
Halli
2012/08/07 20:52:16
Done.
Halli
2012/08/07 20:52:16
Done.
|
| + static bool VerifyChromeShortcut(const std::wstring& exe_path, |
| + const std::wstring& shortcut, |
|
gab
2012/08/07 19:18:25
ident to match variable above
Halli
2012/08/07 20:52:16
Done.
|
| + const std::wstring& description, |
| + int icon_index); |
| private: |
| DISALLOW_COPY_AND_ASSIGN(ShellUtil); |
| }; |