| 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 <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/callback_forward.h" | 13 #include "base/callback_forward.h" |
| 14 #include "base/files/file.h" | 14 #include "base/files/file.h" |
| 15 #include "base/files/file_path.h" | 15 #include "base/files/file_path.h" |
| 16 #include "base/files/file_util_proxy.h" | 16 #include "base/files/file_util_proxy.h" |
| 17 #include "base/gtest_prod_util.h" | 17 #include "base/gtest_prod_util.h" |
| 18 #include "base/memory/scoped_ptr.h" | 18 #include "base/memory/scoped_ptr.h" |
| 19 #include "storage/browser/blob/shareable_file_reference.h" |
| 19 #include "storage/browser/fileapi/file_system_file_util.h" | 20 #include "storage/browser/fileapi/file_system_file_util.h" |
| 20 #include "storage/browser/fileapi/file_system_url.h" | 21 #include "storage/browser/fileapi/file_system_url.h" |
| 21 #include "storage/browser/fileapi/sandbox_directory_database.h" | 22 #include "storage/browser/fileapi/sandbox_directory_database.h" |
| 22 #include "storage/browser/fileapi/sandbox_file_system_backend_delegate.h" | 23 #include "storage/browser/fileapi/sandbox_file_system_backend_delegate.h" |
| 23 #include "storage/browser/storage_browser_export.h" | 24 #include "storage/browser/storage_browser_export.h" |
| 24 #include "storage/common/blob/shareable_file_reference.h" | |
| 25 #include "storage/common/fileapi/file_system_types.h" | 25 #include "storage/common/fileapi/file_system_types.h" |
| 26 | 26 |
| 27 namespace base { | 27 namespace base { |
| 28 class SequencedTaskRunner; | 28 class SequencedTaskRunner; |
| 29 class TimeTicks; | 29 class TimeTicks; |
| 30 } | 30 } |
| 31 | 31 |
| 32 namespace content { | 32 namespace content { |
| 33 class ObfuscatedFileUtilTest; | 33 class ObfuscatedFileUtilTest; |
| 34 class QuotaBackendImplTest; | 34 class QuotaBackendImplTest; |
| (...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 | 340 |
| 341 // Not owned. | 341 // Not owned. |
| 342 SandboxFileSystemBackendDelegate* sandbox_delegate_; | 342 SandboxFileSystemBackendDelegate* sandbox_delegate_; |
| 343 | 343 |
| 344 DISALLOW_COPY_AND_ASSIGN(ObfuscatedFileUtil); | 344 DISALLOW_COPY_AND_ASSIGN(ObfuscatedFileUtil); |
| 345 }; | 345 }; |
| 346 | 346 |
| 347 } // namespace storage | 347 } // namespace storage |
| 348 | 348 |
| 349 #endif // STORAGE_BROWSER_FILEAPI_OBFUSCATED_FILE_UTIL_H_ | 349 #endif // STORAGE_BROWSER_FILEAPI_OBFUSCATED_FILE_UTIL_H_ |
| OLD | NEW |