| Index: chrome/browser/component_updater/pepper_flash_component_installer.cc
 | 
| diff --git a/chrome/browser/component_updater/pepper_flash_component_installer.cc b/chrome/browser/component_updater/pepper_flash_component_installer.cc
 | 
| index 26638249c53fdb6b6d57440fe417269286786cf1..0203a549d3558e9eb6e3451bad0b34824371bb6a 100644
 | 
| --- a/chrome/browser/component_updater/pepper_flash_component_installer.cc
 | 
| +++ b/chrome/browser/component_updater/pepper_flash_component_installer.cc
 | 
| @@ -13,6 +13,7 @@
 | 
|  #include "base/command_line.h"
 | 
|  #include "base/compiler_specific.h"
 | 
|  #include "base/file_util.h"
 | 
| +#include "base/files/file_enumerator.h"
 | 
|  #include "base/files/file_path.h"
 | 
|  #include "base/logging.h"
 | 
|  #include "base/path_service.h"
 | 
| @@ -95,8 +96,8 @@ bool GetPepperFlashDirectory(base::FilePath* latest_dir,
 | 
|                               std::vector<base::FilePath>* older_dirs) {
 | 
|    base::FilePath base_dir = GetPepperFlashBaseDirectory();
 | 
|    bool found = false;
 | 
| -  file_util::FileEnumerator
 | 
| -      file_enumerator(base_dir, false, file_util::FileEnumerator::DIRECTORIES);
 | 
| +  base::FileEnumerator
 | 
| +      file_enumerator(base_dir, false, base::FileEnumerator::DIRECTORIES);
 | 
|    for (base::FilePath path = file_enumerator.Next(); !path.value().empty();
 | 
|         path = file_enumerator.Next()) {
 | 
|      Version version(path.BaseName().MaybeAsASCII());
 | 
| 
 |