Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef WEBKIT_FILEAPI_FILE_UTIL_DELETE_HELPER_H_ | |
| 6 #define WEBKIT_FILEAPI_FILE_UTIL_DELETE_HELPER_H_ | |
| 7 | |
| 8 #include "base/platform_file.h" | |
| 9 | |
| 10 namespace fileapi { | |
| 11 | |
| 12 class FileSystemFileUtil; | |
| 13 class FileSystemOperationContext; | |
| 14 class FileSystemPath; | |
| 15 | |
| 16 base::PlatformFileError DeletePath(FileSystemOperationContext* context, | |
| 17 FileSystemFileUtil* file_util, | |
| 18 const FileSystemPath& path, | |
| 19 bool recursive); | |
|
kinuko
2012/03/02 19:29:22
Simple function looks good.
This changeset itself
tzik
2012/03/02 21:25:47
Done with wrapping function and to rename file_uti
| |
| 20 | |
| 21 base::PlatformFileError DeleteDirectoryRecursive( | |
| 22 FileSystemOperationContext* context, | |
| 23 FileSystemFileUtil* file_util, | |
| 24 const FileSystemPath& path); | |
| 25 | |
| 26 } // namespace fileapi | |
| 27 | |
| 28 #endif // WEBKIT_FILEAPI_FILE_UTIL_DELETE_HELPER_H_ | |
| OLD | NEW |