| Index: trunk/src/chrome/tools/profiles/generate_profile.cc
|
| ===================================================================
|
| --- trunk/src/chrome/tools/profiles/generate_profile.cc (revision 198849)
|
| +++ trunk/src/chrome/tools/profiles/generate_profile.cc (working copy)
|
| @@ -10,7 +10,6 @@
|
| #include "base/at_exit.h"
|
| #include "base/command_line.h"
|
| #include "base/file_util.h"
|
| -#include "base/files/file_enumerator.h"
|
| #include "base/files/file_path.h"
|
| #include "base/i18n/icu_util.h"
|
| #include "base/logging.h"
|
| @@ -291,8 +290,8 @@
|
|
|
| message_loop.RunUntilIdle();
|
|
|
| - base::FileEnumerator file_iterator(profile.GetPath(), false,
|
| - base::FileEnumerator::FILES);
|
| + file_util::FileEnumerator file_iterator(profile.GetPath(), false,
|
| + file_util::FileEnumerator::FILES);
|
| base::FilePath path = file_iterator.Next();
|
| while (!path.empty()) {
|
| base::FilePath dst_file = dst_dir.Append(path.BaseName());
|
|
|