Chromium Code Reviews| Index: chrome/browser/extensions/sandboxed_unpacker_unittest.cc |
| diff --git a/chrome/browser/extensions/sandboxed_unpacker_unittest.cc b/chrome/browser/extensions/sandboxed_unpacker_unittest.cc |
| index 3be80b28074191e34318cb1178b672fe096dea82..0b7cfe449d1fbbf18bd0776752d6d4926e7bdafd 100644 |
| --- a/chrome/browser/extensions/sandboxed_unpacker_unittest.cc |
| +++ b/chrome/browser/extensions/sandboxed_unpacker_unittest.cc |
| @@ -135,10 +135,9 @@ class SandboxedUnpackerTest : public testing::Test { |
| bool TempFilesRemoved() { |
| // Check that temporary files were cleaned up. |
| - file_util::FileEnumerator::FileType files_and_dirs = |
| - static_cast<file_util::FileEnumerator::FileType>( |
| + int files_and_dirs = |
|
not at google - send to devlin
2012/08/06 05:04:56
should be kFilesAndDirs
Haruki Sato
2012/08/06 23:22:18
Good catch. I will follow up with another CL.
|
| file_util::FileEnumerator::DIRECTORIES | |
| - file_util::FileEnumerator::FILES); |
| + file_util::FileEnumerator::FILES; |
|
jar (doing other things)
2012/08/06 18:27:02
nit: push either line 140 or 139 onto the end of 1
Haruki Sato
2012/08/06 23:22:18
Done.
|
| file_util::FileEnumerator temp_iterator( |
| temp_path_, |