| Index: base/file_util.h
|
| diff --git a/base/file_util.h b/base/file_util.h
|
| index fb6f6244a06cef12eb10af0d71d8ad000d000ab4..f7147796aaed06642fa184e27b0902ed54c0f777 100644
|
| --- a/base/file_util.h
|
| +++ b/base/file_util.h
|
| @@ -531,10 +531,10 @@ class BASE_EXPORT FileEnumerator {
|
| // TODO(erikkay): Fix the pattern matching to work at all levels.
|
| FileEnumerator(const FilePath& root_path,
|
| bool recursive,
|
| - FileType file_type);
|
| + int file_type);
|
| FileEnumerator(const FilePath& root_path,
|
| bool recursive,
|
| - FileType file_type,
|
| + int file_type,
|
| const FilePath::StringType& pattern);
|
| ~FileEnumerator();
|
|
|
| @@ -581,7 +581,7 @@ class BASE_EXPORT FileEnumerator {
|
|
|
| FilePath root_path_;
|
| bool recursive_;
|
| - FileType file_type_;
|
| + int file_type_;
|
| FilePath::StringType pattern_; // Empty when we want to find everything.
|
|
|
| // A stack that keeps track of which subdirectories we still need to
|
|
|