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

Unified Diff: trunk/src/content/browser/zygote_host/zygote_host_impl_linux.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/content/browser/zygote_host/zygote_host_impl_linux.cc
===================================================================
--- trunk/src/content/browser/zygote_host/zygote_host_impl_linux.cc (revision 198849)
+++ trunk/src/content/browser/zygote_host/zygote_host_impl_linux.cc (working copy)
@@ -13,7 +13,6 @@
#include "base/command_line.h"
#include "base/environment.h"
#include "base/file_util.h"
-#include "base/files/file_enumerator.h"
#include "base/linux_util.h"
#include "base/logging.h"
#include "base/memory/linked_ptr.h"
@@ -372,7 +371,8 @@
if (!selinux_valid) {
const base::FilePath kSelinuxPath("/selinux");
- base::FileEnumerator en(kSelinuxPath, false, base::FileEnumerator::FILES);
+ file_util::FileEnumerator en(kSelinuxPath, false,
+ file_util::FileEnumerator::FILES);
bool has_selinux_files = !en.Next().empty();
selinux = access(kSelinuxPath.value().c_str(), X_OK) == 0 &&
« no previous file with comments | « trunk/src/content/browser/storage_partition_impl_map.cc ('k') | trunk/src/content/gpu/gpu_info_collector_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698