// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/files/file_enumerator.h" #include "base/files/file_util.h" #include "base/functional/function_ref.h" namespace base { FileEnumerator::FileInfo::~FileInfo() = default; bool FileEnumerator::ShouldSkip(const FilePath& path) { … } bool FileEnumerator::IsTypeMatched(bool is_dir) const { … } void FileEnumerator::ForEach(FunctionRef<void(const FilePath& path)> ref) { … } } // namespace base