OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_CHROMEOS_FILEAPI_CROS_MOUNT_POINT_PROVIDER_H_ | 5 #ifndef WEBKIT_BROWSER_CHROMEOS_FILEAPI_CROS_MOUNT_POINT_PROVIDER_H_ |
6 #define WEBKIT_BROWSER_CHROMEOS_FILEAPI_CROS_MOUNT_POINT_PROVIDER_H_ | 6 #define WEBKIT_BROWSER_CHROMEOS_FILEAPI_CROS_MOUNT_POINT_PROVIDER_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/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
15 #include "base/synchronization/lock.h" | 15 #include "base/synchronization/lock.h" |
16 #include "webkit/browser/fileapi/file_system_mount_point_provider.h" | 16 #include "webkit/browser/fileapi/file_system_mount_point_provider.h" |
| 17 #include "webkit/browser/quota/special_storage_policy.h" |
17 #include "webkit/common/fileapi/file_system_types.h" | 18 #include "webkit/common/fileapi/file_system_types.h" |
18 #include "webkit/quota/special_storage_policy.h" | |
19 #include "webkit/storage/webkit_storage_export.h" | 19 #include "webkit/storage/webkit_storage_export.h" |
20 | 20 |
21 namespace fileapi { | 21 namespace fileapi { |
22 class AsyncFileUtilAdapter; | 22 class AsyncFileUtilAdapter; |
23 class CopyOrMoveFileValidatorFactory; | 23 class CopyOrMoveFileValidatorFactory; |
24 class ExternalMountPoints; | 24 class ExternalMountPoints; |
25 class FileSystemFileUtil; | 25 class FileSystemFileUtil; |
26 class FileSystemURL; | 26 class FileSystemURL; |
27 class IsolatedContext; | 27 class IsolatedContext; |
28 } | 28 } |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 // Globally visible mount points. System MountPonts instance should outlive | 130 // Globally visible mount points. System MountPonts instance should outlive |
131 // all CrosMountPointProvider instances, so raw pointer is safe. | 131 // all CrosMountPointProvider instances, so raw pointer is safe. |
132 fileapi::ExternalMountPoints* system_mount_points_; | 132 fileapi::ExternalMountPoints* system_mount_points_; |
133 | 133 |
134 DISALLOW_COPY_AND_ASSIGN(CrosMountPointProvider); | 134 DISALLOW_COPY_AND_ASSIGN(CrosMountPointProvider); |
135 }; | 135 }; |
136 | 136 |
137 } // namespace chromeos | 137 } // namespace chromeos |
138 | 138 |
139 #endif // WEBKIT_BROWSER_CHROMEOS_FILEAPI_CROS_MOUNT_POINT_PROVIDER_H_ | 139 #endif // WEBKIT_BROWSER_CHROMEOS_FILEAPI_CROS_MOUNT_POINT_PROVIDER_H_ |
OLD | NEW |