Chromium Code Reviews| Index: chrome/installer/setup/uninstall.cc |
| diff --git a/chrome/installer/setup/uninstall.cc b/chrome/installer/setup/uninstall.cc |
| index 3424de270afc6206e2d10a19fc5201b4de3515f8..4e606bb6159c596ee3489c11fb26cda6c6c03dc8 100644 |
| --- a/chrome/installer/setup/uninstall.cc |
| +++ b/chrome/installer/setup/uninstall.cc |
| @@ -469,8 +469,7 @@ DeleteResult DeleteChromeFilesAndFolders(const InstallerState& installer_state, |
| FileEnumerator file_enumerator( |
| target_path, |
| false, |
| - static_cast<FileEnumerator::FileType>(FileEnumerator::FILES | |
| - FileEnumerator::DIRECTORIES)); |
| + (FileEnumerator::FILES | FileEnumerator::DIRECTORIES)); |
|
jar (doing other things)
2012/08/06 18:27:02
nit: remove parens around arg 3;
Consider pushing
Haruki Sato
2012/08/06 23:22:18
Done.
Thanks.
|
| while (true) { |
| FilePath to_delete(file_enumerator.Next()); |
| if (to_delete.empty()) |