| Index: chrome/browser/ui/webui/feedback_ui.cc
|
| diff --git a/chrome/browser/ui/webui/feedback_ui.cc b/chrome/browser/ui/webui/feedback_ui.cc
|
| index cbd55c29ea8c4c5079f6c3d2e10227dd85c6f381..4cd1082e3d5e65d1b9d3334f6049fda4c0bfea06 100644
|
| --- a/chrome/browser/ui/webui/feedback_ui.cc
|
| +++ b/chrome/browser/ui/webui/feedback_ui.cc
|
| @@ -10,6 +10,7 @@
|
| #include "base/base64.h"
|
| #include "base/bind.h"
|
| #include "base/bind_helpers.h"
|
| +#include "base/files/file_enumerator.h"
|
| #include "base/logging.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "base/message_loop.h"
|
| @@ -704,9 +705,8 @@ void FeedbackUI::GetMostRecentScreenshots(
|
| std::string pattern =
|
| std::string(ScreenshotSource::kScreenshotPrefix) + "*" +
|
| ScreenshotSource::kScreenshotSuffix;
|
| - file_util::FileEnumerator screenshots(filepath, false,
|
| - file_util::FileEnumerator::FILES,
|
| - pattern);
|
| + base::FileEnumerator screenshots(filepath, false,
|
| + base::FileEnumerator::FILES, pattern);
|
| base::FilePath screenshot = screenshots.Next();
|
|
|
| std::vector<std::string> screenshot_filepaths;
|
|
|