| 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..169fa72c443d4a28f7d8a29bcd7eadbf8cc0153c 100644
|
| --- a/chrome/installer/test/resource_updater.cc
|
| +++ b/chrome/installer/test/resource_updater.cc
|
| @@ -7,7 +7,7 @@
|
| #include <windows.h>
|
|
|
| #include "base/file_path.h"
|
| -#include "base/file_util.h"
|
| +#include "base/files/memory_mapped_file.h"
|
| #include "base/logging.h"
|
|
|
| namespace upgrade_test {
|
| @@ -39,7 +39,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,
|
|
|