| 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_LOCAL_FILE_UTIL_H_ | 5 #ifndef STORAGE_BROWSER_FILEAPI_LOCAL_FILE_UTIL_H_ |
| 6 #define STORAGE_BROWSER_FILEAPI_LOCAL_FILE_UTIL_H_ | 6 #define STORAGE_BROWSER_FILEAPI_LOCAL_FILE_UTIL_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 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/macros.h" | 14 #include "base/macros.h" |
| 15 #include "storage/browser/fileapi/file_system_file_util.h" | 15 #include "storage/browser/fileapi/file_system_file_util.h" |
| 16 #include "storage/browser/storage_browser_export.h" | 16 #include "storage/browser/storage_browser_export.h" |
| 17 | 17 |
| 18 namespace base { | 18 namespace base { |
| 19 class Time; | 19 class Time; |
| 20 } | 20 } |
| 21 | 21 |
| 22 class GURL; | |
| 23 | |
| 24 namespace storage { | 22 namespace storage { |
| 25 | 23 |
| 26 class FileSystemOperationContext; | 24 class FileSystemOperationContext; |
| 27 class FileSystemURL; | 25 class FileSystemURL; |
| 28 | 26 |
| 29 // An instance of this class is created and owned by *FileSystemBackend. | 27 // An instance of this class is created and owned by *FileSystemBackend. |
| 30 class STORAGE_EXPORT LocalFileUtil | 28 class STORAGE_EXPORT LocalFileUtil |
| 31 : public FileSystemFileUtil { | 29 : public FileSystemFileUtil { |
| 32 public: | 30 public: |
| 33 LocalFileUtil(); | 31 LocalFileUtil(); |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 base::File::Info* file_info, | 77 base::File::Info* file_info, |
| 80 base::FilePath* platform_path) override; | 78 base::FilePath* platform_path) override; |
| 81 | 79 |
| 82 private: | 80 private: |
| 83 DISALLOW_COPY_AND_ASSIGN(LocalFileUtil); | 81 DISALLOW_COPY_AND_ASSIGN(LocalFileUtil); |
| 84 }; | 82 }; |
| 85 | 83 |
| 86 } // namespace storage | 84 } // namespace storage |
| 87 | 85 |
| 88 #endif // STORAGE_BROWSER_FILEAPI_LOCAL_FILE_UTIL_H_ | 86 #endif // STORAGE_BROWSER_FILEAPI_LOCAL_FILE_UTIL_H_ |
| OLD | NEW |