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_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_forward.h" | 10 #include "base/callback_forward.h" |
| 11 #include "base/compiler_specific.h" |
11 #include "base/file_path.h" | 12 #include "base/file_path.h" |
12 #include "base/file_util.h" | 13 #include "base/file_util.h" |
13 #include "base/file_util_proxy.h" | 14 #include "base/file_util_proxy.h" |
14 #include "base/logging.h" | 15 #include "base/logging.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 Time; | 22 class Time; |
23 } | 23 } |
24 | 24 |
25 class GURL; | 25 class GURL; |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 FileSystemPath GetLocalPath( | 108 FileSystemPath GetLocalPath( |
109 FileSystemOperationContext* context, | 109 FileSystemOperationContext* context, |
110 const FileSystemPath& path); | 110 const FileSystemPath& path); |
111 | 111 |
112 DISALLOW_COPY_AND_ASSIGN(LocalFileUtil); | 112 DISALLOW_COPY_AND_ASSIGN(LocalFileUtil); |
113 }; | 113 }; |
114 | 114 |
115 } // namespace fileapi | 115 } // namespace fileapi |
116 | 116 |
117 #endif // WEBKIT_FILEAPI_LOCAL_FILE_UTIL_H_ | 117 #endif // WEBKIT_FILEAPI_LOCAL_FILE_UTIL_H_ |
OLD | NEW |