| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_BROWSER_FILEAPI_EXTERNAL_MOUNT_POINTS_H_ | 5 #ifndef STORAGE_BROWSER_FILEAPI_EXTERNAL_MOUNT_POINTS_H_ |
| 6 #define WEBKIT_BROWSER_FILEAPI_EXTERNAL_MOUNT_POINTS_H_ | 6 #define STORAGE_BROWSER_FILEAPI_EXTERNAL_MOUNT_POINTS_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/synchronization/lock.h" | 13 #include "base/synchronization/lock.h" |
| 14 #include "webkit/browser/fileapi/mount_points.h" | 14 #include "storage/browser/fileapi/mount_points.h" |
| 15 #include "webkit/browser/storage_browser_export.h" | 15 #include "storage/browser/storage_browser_export.h" |
| 16 #include "webkit/common/fileapi/file_system_mount_option.h" | 16 #include "storage/common/fileapi/file_system_mount_option.h" |
| 17 #include "webkit/common/fileapi/file_system_types.h" | 17 #include "storage/common/fileapi/file_system_types.h" |
| 18 | 18 |
| 19 namespace base { | 19 namespace base { |
| 20 class FilePath; | 20 class FilePath; |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace storage { | 23 namespace storage { |
| 24 | 24 |
| 25 class FileSystemURL; | 25 class FileSystemURL; |
| 26 | 26 |
| 27 // Manages external filesystem namespaces that are identified by 'mount name' | 27 // Manages external filesystem namespaces that are identified by 'mount name' |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 mutable base::Lock lock_; | 149 mutable base::Lock lock_; |
| 150 | 150 |
| 151 NameToInstance instance_map_; | 151 NameToInstance instance_map_; |
| 152 PathToName path_to_name_map_; | 152 PathToName path_to_name_map_; |
| 153 | 153 |
| 154 DISALLOW_COPY_AND_ASSIGN(ExternalMountPoints); | 154 DISALLOW_COPY_AND_ASSIGN(ExternalMountPoints); |
| 155 }; | 155 }; |
| 156 | 156 |
| 157 } // namespace storage | 157 } // namespace storage |
| 158 | 158 |
| 159 #endif // WEBKIT_BROWSER_FILEAPI_EXTERNAL_MOUNT_POINTS_H_ | 159 #endif // STORAGE_BROWSER_FILEAPI_EXTERNAL_MOUNT_POINTS_H_ |
| OLD | NEW |