Chromium Code Reviews| Index: net/base/directory_lister.cc |
| =================================================================== |
| --- net/base/directory_lister.cc (revision 28691) |
| +++ net/base/directory_lister.cc (working copy) |
| @@ -55,7 +55,7 @@ |
| : dir_(dir), |
| delegate_(delegate), |
| message_loop_(NULL), |
| - thread_(NULL), |
| + thread_(kNullThreadHandle), |
| canceled_(false) { |
| DCHECK(!dir.value().empty()); |
| } |
| @@ -88,7 +88,7 @@ |
| if (thread_) { |
| PlatformThread::Join(thread_); |
| - thread_ = NULL; |
| + thread_ = kNullThreadHandle; |
| } |
| } |