| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_LOCAL_FILE_UTIL_H_ | 5 #ifndef WEBKIT_FILEAPI_LOCAL_FILE_UTIL_H_ |
| 6 #define WEBKIT_FILEAPI_LOCAL_FILE_UTIL_H_ | 6 #define WEBKIT_FILEAPI_LOCAL_FILE_UTIL_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/file_path.h" | 11 #include "base/file_path.h" |
| 12 #include "base/file_util.h" | 12 #include "base/file_util.h" |
| 13 #include "base/file_util_proxy.h" | 13 #include "base/file_util_proxy.h" |
| 14 #include "base/logging.h" | 14 #include "base/logging.h" |
| 15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 16 #include "base/platform_file.h" | 16 #include "base/platform_file.h" |
| 17 #include "webkit/fileapi/file_system_file_util.h" | 17 #include "webkit/fileapi/file_system_file_util.h" |
| 18 #include "webkit/fileapi/file_system_types.h" | 18 #include "webkit/fileapi/file_system_types.h" |
| 19 | 19 |
| 20 namespace base { | 20 namespace base { |
| 21 struct PlatformFileInfo; | 21 struct PlatformFileInfo; |
| 22 class MessageLoopProxy; | |
| 23 class Time; | 22 class Time; |
| 24 } | 23 } |
| 25 | 24 |
| 26 class GURL; | 25 class GURL; |
| 27 | 26 |
| 28 namespace fileapi { | 27 namespace fileapi { |
| 29 | 28 |
| 30 using base::PlatformFile; | 29 using base::PlatformFile; |
| 31 using base::PlatformFileError; | 30 using base::PlatformFileError; |
| 32 | 31 |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 const GURL& origin_url, | 112 const GURL& origin_url, |
| 114 FileSystemType type, | 113 FileSystemType type, |
| 115 const FilePath& virtual_path); | 114 const FilePath& virtual_path); |
| 116 | 115 |
| 117 DISALLOW_COPY_AND_ASSIGN(LocalFileUtil); | 116 DISALLOW_COPY_AND_ASSIGN(LocalFileUtil); |
| 118 }; | 117 }; |
| 119 | 118 |
| 120 } // namespace fileapi | 119 } // namespace fileapi |
| 121 | 120 |
| 122 #endif // WEBKIT_FILEAPI_LOCAL_FILE_UTIL_H_ | 121 #endif // WEBKIT_FILEAPI_LOCAL_FILE_UTIL_H_ |
| OLD | NEW |