OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 23 matching lines...) Expand all Loading... | |
34 // A DirectoryIterator is created with a given directory. It originally points | 34 // A DirectoryIterator is created with a given directory. It originally points |
35 // to the first file in the directory, and can be advanecd with Next(). This | 35 // to the first file in the directory, and can be advanecd with Next(). This |
36 // allows you to get information about each file. | 36 // allows you to get information about each file. |
37 | 37 |
38 // Constructor | 38 // Constructor |
39 DirectoryIterator::DirectoryIterator() | 39 DirectoryIterator::DirectoryIterator() |
40 #ifdef WEBRTC_WIN | 40 #ifdef WEBRTC_WIN |
41 : handle_(INVALID_HANDLE_VALUE) { | 41 : handle_(INVALID_HANDLE_VALUE) { |
42 #else | 42 #else |
43 : dir_(nullptr), | 43 : dir_(nullptr), |
44 dirent_(nullptr){ | 44 dirent_(nullptr) { |
kwiberg-webrtc
2017/05/29 12:11:35
Irrelevant cleanup.
AleBzk
2017/05/29 13:04:48
Removed.
| |
45 #endif | 45 #endif |
46 } | 46 } |
47 | 47 |
48 // Destructor | 48 // Destructor |
49 DirectoryIterator::~DirectoryIterator() { | 49 DirectoryIterator::~DirectoryIterator() { |
50 #if defined(WEBRTC_WIN) | 50 #if defined(WEBRTC_WIN) |
51 if (handle_ != INVALID_HANDLE_VALUE) | 51 if (handle_ != INVALID_HANDLE_VALUE) |
52 ::FindClose(handle_); | 52 ::FindClose(handle_); |
53 #else | 53 #else |
54 if (dir_) | 54 if (dir_) |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
128 #endif | 128 #endif |
129 } | 129 } |
130 return default_filesystem_; | 130 return default_filesystem_; |
131 } | 131 } |
132 | 132 |
133 DirectoryIterator* FilesystemInterface::IterateDirectory() { | 133 DirectoryIterator* FilesystemInterface::IterateDirectory() { |
134 return new DirectoryIterator(); | 134 return new DirectoryIterator(); |
135 } | 135 } |
136 | 136 |
137 } // namespace rtc | 137 } // namespace rtc |
OLD | NEW |