OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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 CHROME_BROWSER_CHROMEOS_FILEAPI_FILE_SYSTEM_BACKEND_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_FILEAPI_FILE_SYSTEM_BACKEND_H_ |
6 #define CHROME_BROWSER_CHROMEOS_FILEAPI_FILE_SYSTEM_BACKEND_H_ | 6 #define CHROME_BROWSER_CHROMEOS_FILEAPI_FILE_SYSTEM_BACKEND_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "storage/browser/fileapi/file_system_backend.h" |
| 15 #include "storage/browser/quota/special_storage_policy.h" |
14 #include "storage/common/fileapi/file_system_types.h" | 16 #include "storage/common/fileapi/file_system_types.h" |
15 #include "webkit/browser/fileapi/file_system_backend.h" | |
16 #include "webkit/browser/quota/special_storage_policy.h" | |
17 | 17 |
18 namespace storage { | 18 namespace storage { |
19 class CopyOrMoveFileValidatorFactory; | 19 class CopyOrMoveFileValidatorFactory; |
20 class ExternalMountPoints; | 20 class ExternalMountPoints; |
21 class FileSystemURL; | 21 class FileSystemURL; |
22 class WatcherManager; | 22 class WatcherManager; |
23 } // namespace storage | 23 } // namespace storage |
24 | 24 |
25 namespace chromeos { | 25 namespace chromeos { |
26 | 26 |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 // Globally visible mount points. System MountPonts instance should outlive | 165 // Globally visible mount points. System MountPonts instance should outlive |
166 // all FileSystemBackend instances, so raw pointer is safe. | 166 // all FileSystemBackend instances, so raw pointer is safe. |
167 storage::ExternalMountPoints* system_mount_points_; | 167 storage::ExternalMountPoints* system_mount_points_; |
168 | 168 |
169 DISALLOW_COPY_AND_ASSIGN(FileSystemBackend); | 169 DISALLOW_COPY_AND_ASSIGN(FileSystemBackend); |
170 }; | 170 }; |
171 | 171 |
172 } // namespace chromeos | 172 } // namespace chromeos |
173 | 173 |
174 #endif // CHROME_BROWSER_CHROMEOS_FILEAPI_FILE_SYSTEM_BACKEND_H_ | 174 #endif // CHROME_BROWSER_CHROMEOS_FILEAPI_FILE_SYSTEM_BACKEND_H_ |
OLD | NEW |