| 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_FILEAPI_EXTERNAL_MOUNT_POINTS_H_ | 5 #ifndef WEBKIT_BROWSER_FILEAPI_EXTERNAL_MOUNT_POINTS_H_ |
| 6 #define WEBKIT_FILEAPI_EXTERNAL_MOUNT_POINTS_H_ | 6 #define WEBKIT_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 "webkit/fileapi/file_system_types.h" | 15 #include "webkit/fileapi/file_system_types.h" |
| 15 #include "webkit/fileapi/mount_points.h" | |
| 16 #include "webkit/storage/webkit_storage_export.h" | 16 #include "webkit/storage/webkit_storage_export.h" |
| 17 | 17 |
| 18 namespace base { | 18 namespace base { |
| 19 class FilePath; | 19 class FilePath; |
| 20 } | 20 } |
| 21 | 21 |
| 22 namespace fileapi { | 22 namespace fileapi { |
| 23 class FileSystemURL; | 23 class FileSystemURL; |
| 24 class RemoteFileSystemProxyInterface; | 24 class RemoteFileSystemProxyInterface; |
| 25 } | 25 } |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 ~ScopedExternalFileSystem(); | 158 ~ScopedExternalFileSystem(); |
| 159 | 159 |
| 160 base::FilePath GetVirtualRootPath() const; | 160 base::FilePath GetVirtualRootPath() const; |
| 161 | 161 |
| 162 private: | 162 private: |
| 163 const std::string mount_name_; | 163 const std::string mount_name_; |
| 164 }; | 164 }; |
| 165 | 165 |
| 166 } // namespace fileapi | 166 } // namespace fileapi |
| 167 | 167 |
| 168 #endif // WEBKIT_FILEAPI_EXTERNAL_MOUNT_POINTS_H_ | 168 #endif // WEBKIT_BROWSER_FILEAPI_EXTERNAL_MOUNT_POINTS_H_ |
| 169 | 169 |
| OLD | NEW |