Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(385)

Unified Diff: trunk/src/chrome/browser/ui/webui/feedback_ui.cc

Issue 14824006: Revert 198820 "Move FileEnumerator to its own file, do some refa..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: trunk/src/chrome/browser/ui/webui/feedback_ui.cc
===================================================================
--- trunk/src/chrome/browser/ui/webui/feedback_ui.cc (revision 198849)
+++ trunk/src/chrome/browser/ui/webui/feedback_ui.cc (working copy)
@@ -10,7 +10,6 @@
#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"
@@ -705,8 +704,9 @@
std::string pattern =
std::string(ScreenshotSource::kScreenshotPrefix) + "*" +
ScreenshotSource::kScreenshotSuffix;
- base::FileEnumerator screenshots(filepath, false,
- base::FileEnumerator::FILES, pattern);
+ file_util::FileEnumerator screenshots(filepath, false,
+ file_util::FileEnumerator::FILES,
+ pattern);
base::FilePath screenshot = screenshots.Next();
std::vector<std::string> screenshot_filepaths;

Powered by Google App Engine
This is Rietveld 408576698