| Index: net/base/directory_lister.h
|
| diff --git a/net/base/directory_lister.h b/net/base/directory_lister.h
|
| index 5fbc9dc6fa15abd3c409aa4502327663dfa57e78..a7ad964220c64e51558443a968ed3ca1e345a93f 100644
|
| --- a/net/base/directory_lister.h
|
| +++ b/net/base/directory_lister.h
|
| @@ -22,7 +22,7 @@ namespace net {
|
| // structs over to the main application thread. The consumer of this class
|
| // is insulated from any of the multi-threading details.
|
| //
|
| -class NET_EXPORT DirectoryLister {
|
| +class NET_EXPORT DirectoryLister {
|
| public:
|
| // Represents one file found.
|
| struct DirectoryListerData {
|
| @@ -48,15 +48,9 @@ class NET_EXPORT DirectoryLister {
|
| // directories first in name order, then files by name order
|
| // FULL_PATH sorts by paths as strings, ignoring files v. directories
|
| // DATE sorts by last modified date
|
| - enum SortType {
|
| - NO_SORT,
|
| - DATE,
|
| - ALPHA_DIRS_FIRST,
|
| - FULL_PATH
|
| - };
|
| + enum SortType { NO_SORT, DATE, ALPHA_DIRS_FIRST, FULL_PATH };
|
|
|
| - DirectoryLister(const base::FilePath& dir,
|
| - DirectoryListerDelegate* delegate);
|
| + DirectoryLister(const base::FilePath& dir, DirectoryListerDelegate* delegate);
|
|
|
| DirectoryLister(const base::FilePath& dir,
|
| bool recursive,
|
|
|