Chromium Code Reviews| Index: chrome/installer/test/resource_updater.cc |
| diff --git a/chrome/installer/test/resource_updater.cc b/chrome/installer/test/resource_updater.cc |
| index 2deb3014ed448a471eed1de233a5c7465730338d..037c169a12984a1714e92021b17d0cff529fdfe1 100644 |
| --- a/chrome/installer/test/resource_updater.cc |
| +++ b/chrome/installer/test/resource_updater.cc |
| @@ -8,6 +8,7 @@ |
| #include "base/file_path.h" |
| #include "base/file_util.h" |
|
brettw
2013/02/22 21:28:15
I wonder if you checked whether some of these file
tfarina
2013/02/22 22:58:54
Done. I ran 'git grep file_util" on all files in t
|
| +#include "base/files/memory_mapped_file.h" |
| #include "base/logging.h" |
| namespace upgrade_test { |
| @@ -39,7 +40,7 @@ bool ResourceUpdater::Update(const std::wstring& name, |
| WORD language_id, |
| const base::FilePath& input_file) { |
| DCHECK(handle_ != NULL); |
| - file_util::MemoryMappedFile input; |
| + base::MemoryMappedFile input; |
| if (input.Initialize(input_file)) { |
| if (UpdateResource(handle_, type.c_str(), name.c_str(), language_id, |