| Index: trunk/src/chrome/common/extensions/extension_l10n_util.cc
|
| ===================================================================
|
| --- trunk/src/chrome/common/extensions/extension_l10n_util.cc (revision 198849)
|
| +++ trunk/src/chrome/common/extensions/extension_l10n_util.cc (working copy)
|
| @@ -10,7 +10,6 @@
|
| #include <vector>
|
|
|
| #include "base/file_util.h"
|
| -#include "base/files/file_enumerator.h"
|
| #include "base/json/json_file_value_serializer.h"
|
| #include "base/logging.h"
|
| #include "base/memory/linked_ptr.h"
|
| @@ -287,9 +286,9 @@
|
| GetAllLocales(&chrome_locales);
|
|
|
| // Enumerate all supplied locales in the extension.
|
| - base::FileEnumerator locales(locale_path,
|
| - false,
|
| - base::FileEnumerator::DIRECTORIES);
|
| + file_util::FileEnumerator locales(locale_path,
|
| + false,
|
| + file_util::FileEnumerator::DIRECTORIES);
|
| base::FilePath locale_folder;
|
| while (!(locale_folder = locales.Next()).empty()) {
|
| std::string locale_name = locale_folder.BaseName().MaybeAsASCII();
|
|
|