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_FILEAPI_OBFUSCATED_FILE_UTIL_H_ | 5 #ifndef WEBKIT_BROWSER_FILEAPI_OBFUSCATED_FILE_UTIL_H_ |
6 #define WEBKIT_FILEAPI_OBFUSCATED_FILE_UTIL_H_ | 6 #define WEBKIT_BROWSER_FILEAPI_OBFUSCATED_FILE_UTIL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
12 #include "base/files/file_util_proxy.h" | 12 #include "base/files/file_util_proxy.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/platform_file.h" | 14 #include "base/platform_file.h" |
15 #include "base/timer.h" | 15 #include "base/timer.h" |
16 #include "webkit/blob/shareable_file_reference.h" | 16 #include "webkit/blob/shareable_file_reference.h" |
| 17 #include "webkit/browser/fileapi/sandbox_directory_database.h" |
| 18 #include "webkit/browser/fileapi/sandbox_origin_database.h" |
17 #include "webkit/fileapi/file_system_file_util.h" | 19 #include "webkit/fileapi/file_system_file_util.h" |
18 #include "webkit/fileapi/file_system_types.h" | 20 #include "webkit/fileapi/file_system_types.h" |
19 #include "webkit/fileapi/file_system_url.h" | 21 #include "webkit/fileapi/file_system_url.h" |
20 #include "webkit/fileapi/sandbox_directory_database.h" | |
21 #include "webkit/fileapi/sandbox_origin_database.h" | |
22 #include "webkit/storage/webkit_storage_export.h" | 22 #include "webkit/storage/webkit_storage_export.h" |
23 | 23 |
24 namespace base { | 24 namespace base { |
25 class Time; | 25 class Time; |
26 } | 26 } |
27 | 27 |
28 class GURL; | 28 class GURL; |
29 | 29 |
30 namespace fileapi { | 30 namespace fileapi { |
31 | 31 |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 DirectoryMap directories_; | 252 DirectoryMap directories_; |
253 scoped_ptr<SandboxOriginDatabase> origin_database_; | 253 scoped_ptr<SandboxOriginDatabase> origin_database_; |
254 base::FilePath file_system_directory_; | 254 base::FilePath file_system_directory_; |
255 base::OneShotTimer<ObfuscatedFileUtil> timer_; | 255 base::OneShotTimer<ObfuscatedFileUtil> timer_; |
256 | 256 |
257 DISALLOW_COPY_AND_ASSIGN(ObfuscatedFileUtil); | 257 DISALLOW_COPY_AND_ASSIGN(ObfuscatedFileUtil); |
258 }; | 258 }; |
259 | 259 |
260 } // namespace fileapi | 260 } // namespace fileapi |
261 | 261 |
262 #endif // WEBKIT_FILEAPI_OBFUSCATED_FILE_UTIL_H_ | 262 #endif // WEBKIT_BROWSER_FILEAPI_OBFUSCATED_FILE_UTIL_H_ |
OLD | NEW |