| Index: webkit/fileapi/media/filtering_file_enumerator.cc
|
| diff --git a/webkit/fileapi/media/filtering_file_enumerator.cc b/webkit/fileapi/media/filtering_file_enumerator.cc
|
| index e2916974a2e466ab01be9a11a918839f08f82905..393cfa24c7e8c8affd84cb7062b99a5da87fc0e9 100644
|
| --- a/webkit/fileapi/media/filtering_file_enumerator.cc
|
| +++ b/webkit/fileapi/media/filtering_file_enumerator.cc
|
| @@ -21,8 +21,8 @@ namespace {
|
|
|
| // Used to skip the hidden folders and files. Returns true if the file specified
|
| // by |path| should be skipped.
|
| -bool ShouldSkip(const FilePath& path) {
|
| - const FilePath& base_name = path.BaseName();
|
| +bool ShouldSkip(const base::FilePath& path) {
|
| + const base::FilePath& base_name = path.BaseName();
|
| if (base_name.empty())
|
| return false;
|
|
|
| @@ -77,9 +77,9 @@ FilteringFileEnumerator::FilteringFileEnumerator(
|
| FilteringFileEnumerator::~FilteringFileEnumerator() {
|
| }
|
|
|
| -FilePath FilteringFileEnumerator::Next() {
|
| +base::FilePath FilteringFileEnumerator::Next() {
|
| while (true) {
|
| - FilePath next = base_enumerator_->Next();
|
| + base::FilePath next = base_enumerator_->Next();
|
| if (ShouldSkip(next))
|
| continue;
|
|
|
|
|