OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef NET_BASE_DIRECTORY_LISTER_H_ | 5 #ifndef NET_BASE_DIRECTORY_LISTER_H_ |
6 #define NET_BASE_DIRECTORY_LISTER_H_ | 6 #define NET_BASE_DIRECTORY_LISTER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/cancellation_flag.h" | 11 #include "base/cancellation_flag.h" |
12 #include "base/file_path.h" | 12 #include "base/file_path.h" |
13 #include "base/file_util.h" | 13 #include "base/file_util.h" |
14 #include "base/platform_thread.h" | 14 #include "base/platform_thread.h" |
15 #include "base/ref_counted.h" | 15 #include "base/ref_counted.h" |
16 #include "base/task.h" | |
17 | 16 |
18 class MessageLoop; | 17 class MessageLoop; |
19 | 18 |
20 namespace net { | 19 namespace net { |
21 | 20 |
22 // | 21 // |
23 // This class provides an API for listing the contents of a directory on the | 22 // This class provides an API for listing the contents of a directory on the |
24 // filesystem asynchronously. It spawns a background thread, and enumerates | 23 // filesystem asynchronously. It spawns a background thread, and enumerates |
25 // the specified directory on that thread. It marshalls WIN32_FIND_DATA | 24 // the specified directory on that thread. It marshalls WIN32_FIND_DATA |
26 // structs over to the main application thread. The consumer of this class | 25 // structs over to the main application thread. The consumer of this class |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 DirectoryListerDelegate* delegate_; | 105 DirectoryListerDelegate* delegate_; |
107 SORT_TYPE sort_; | 106 SORT_TYPE sort_; |
108 MessageLoop* message_loop_; | 107 MessageLoop* message_loop_; |
109 PlatformThreadHandle thread_; | 108 PlatformThreadHandle thread_; |
110 base::CancellationFlag canceled_; | 109 base::CancellationFlag canceled_; |
111 }; | 110 }; |
112 | 111 |
113 } // namespace net | 112 } // namespace net |
114 | 113 |
115 #endif // NET_BASE_DIRECTORY_LISTER_H_ | 114 #endif // NET_BASE_DIRECTORY_LISTER_H_ |
OLD | NEW |