| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 WEBKIT_CHROMEOS_FILEAPI_FILE_SYSTEM_FILE_UTIL_MEMORY_H_ | 5 #ifndef WEBKIT_CHROMEOS_FILEAPI_FILE_SYSTEM_FILE_UTIL_MEMORY_H_ |
| 6 #define WEBKIT_CHROMEOS_FILEAPI_FILE_SYSTEM_FILE_UTIL_MEMORY_H_ | 6 #define WEBKIT_CHROMEOS_FILEAPI_FILE_SYSTEM_FILE_UTIL_MEMORY_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 } | 138 } |
| 139 | 139 |
| 140 // The files in the file system. | 140 // The files in the file system. |
| 141 std::map<FilePath, FileEntry> files_; | 141 std::map<FilePath, FileEntry> files_; |
| 142 size_t read_directory_buffer_size_; | 142 size_t read_directory_buffer_size_; |
| 143 std::vector<DirectoryEntry> read_directory_buffer_; | 143 std::vector<DirectoryEntry> read_directory_buffer_; |
| 144 | 144 |
| 145 DISALLOW_COPY_AND_ASSIGN(MemoryFileUtil); | 145 DISALLOW_COPY_AND_ASSIGN(MemoryFileUtil); |
| 146 }; | 146 }; |
| 147 | 147 |
| 148 } // fileapi | 148 } // namespace fileapi |
| 149 | 149 |
| 150 #endif // WEBKIT_CHROMEOS_FILEAPI_FILE_SYSTEM_FILE_UTIL_ASYNC_H_ | 150 #endif // WEBKIT_CHROMEOS_FILEAPI_FILE_SYSTEM_FILE_UTIL_ASYNC_H_ |
| OLD | NEW |