| 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 STORAGE_BROWSER_FILEAPI_OBFUSCATED_FILE_UTIL_H_ | 5 #ifndef STORAGE_BROWSER_FILEAPI_OBFUSCATED_FILE_UTIL_H_ |
| 6 #define STORAGE_BROWSER_FILEAPI_OBFUSCATED_FILE_UTIL_H_ | 6 #define STORAGE_BROWSER_FILEAPI_OBFUSCATED_FILE_UTIL_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "storage/browser/blob/shareable_file_reference.h" | 21 #include "storage/browser/blob/shareable_file_reference.h" |
| 22 #include "storage/browser/fileapi/file_system_file_util.h" | 22 #include "storage/browser/fileapi/file_system_file_util.h" |
| 23 #include "storage/browser/fileapi/file_system_url.h" | 23 #include "storage/browser/fileapi/file_system_url.h" |
| 24 #include "storage/browser/fileapi/sandbox_directory_database.h" | 24 #include "storage/browser/fileapi/sandbox_directory_database.h" |
| 25 #include "storage/browser/fileapi/sandbox_file_system_backend_delegate.h" | 25 #include "storage/browser/fileapi/sandbox_file_system_backend_delegate.h" |
| 26 #include "storage/browser/storage_browser_export.h" | 26 #include "storage/browser/storage_browser_export.h" |
| 27 #include "storage/common/fileapi/file_system_types.h" | 27 #include "storage/common/fileapi/file_system_types.h" |
| 28 | 28 |
| 29 namespace base { | 29 namespace base { |
| 30 class SequencedTaskRunner; | 30 class SequencedTaskRunner; |
| 31 class TimeTicks; | |
| 32 } | 31 } |
| 33 | 32 |
| 34 namespace content { | 33 namespace content { |
| 35 class ObfuscatedFileUtilTest; | 34 class ObfuscatedFileUtilTest; |
| 36 class QuotaBackendImplTest; | 35 class QuotaBackendImplTest; |
| 37 } | 36 } |
| 38 | 37 |
| 39 namespace storage { | 38 namespace storage { |
| 40 class SpecialStoragePolicy; | 39 class SpecialStoragePolicy; |
| 41 } | 40 } |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 | 343 |
| 345 // Not owned. | 344 // Not owned. |
| 346 SandboxFileSystemBackendDelegate* sandbox_delegate_; | 345 SandboxFileSystemBackendDelegate* sandbox_delegate_; |
| 347 | 346 |
| 348 DISALLOW_COPY_AND_ASSIGN(ObfuscatedFileUtil); | 347 DISALLOW_COPY_AND_ASSIGN(ObfuscatedFileUtil); |
| 349 }; | 348 }; |
| 350 | 349 |
| 351 } // namespace storage | 350 } // namespace storage |
| 352 | 351 |
| 353 #endif // STORAGE_BROWSER_FILEAPI_OBFUSCATED_FILE_UTIL_H_ | 352 #endif // STORAGE_BROWSER_FILEAPI_OBFUSCATED_FILE_UTIL_H_ |
| OLD | NEW |