Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2017 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 CHROME_BROWSER_WIN_JUMPLIST_FILE_UTIL_H_ | |
| 6 #define CHROME_BROWSER_WIN_JUMPLIST_FILE_UTIL_H_ | |
| 7 | |
| 8 #include "base/files/file_path.h" | |
| 9 | |
| 10 // Maximum number of icon files allowed to delete per jumplist update. | |
| 11 const int kMaxFilesDeleted = 100; | |
|
grt (UTC plus 2)
2017/03/23 11:24:58
nit: kMaxFilesToDelete or kFileDeleteLimit?
chengx
2017/03/23 21:16:12
Changed to kFileDeleteLimit.
| |
| 12 | |
| 13 // Folder delete status enumeration, used in Delete* methods below. | |
| 14 // This is used for UMA. Do not delete entries, and keep in sync with | |
| 15 // histograms.xml. | |
| 16 enum FolderDeleteResult { | |
| 17 SUCCEED = 0, | |
| 18 // File name's length exceeds MAX_PATH. This shouldn't happen. | |
| 19 FAIL_INVALID_FILE_PATH, | |
| 20 // JumpListIcons{,Old} directories are read-only. This may heppen. | |
| 21 FAIL_READ_ONLY_DIRECTORY, | |
| 22 // Since JumpListIcons{,Old} are directories. This shouldn't happen. | |
| 23 FAIL_DELETE_SINGLE_FILE, | |
| 24 // JumpListIcons{,Old} should not have sub-directories, so this shouldn't | |
| 25 // happen. If this happens, the root cause must be found. | |
| 26 FAIL_SUBDIRECTORY_EXISTS, | |
| 27 // Delete maximum files allowed succeeds. However, in the process of deleting | |
| 28 // these files, it fails to delete some other files. This may happen. | |
| 29 FAIL_DELETE_MAX_FILES_WITH_ERRORS, | |
| 30 // Fail to delete maximum files allowed when the maximum attempt failures | |
| 31 // are hit. This may heppen. | |
| 32 FAIL_MAX_DELETE_FAILURES, | |
| 33 // Fail to remove the raw empty directory. This may happen. | |
| 34 FAIL_REMOVE_RAW_DIRECTORY, | |
| 35 // Add new items before this one, always keep this one at the end. | |
| 36 END | |
| 37 }; | |
| 38 | |
| 39 // This method is similar to base::DeleteFileRecursive in | |
| 40 // file_util_win.cc with the following differences. | |
| 41 // 1) It has an input parameter |max_file_deleted| to specify the maximum files | |
| 42 // allowed to delete as well as the maximum attempt failures allowd per run. | |
| 43 // 2) It deletes only the files in |path|. All subdirectories in |path| are | |
| 44 // untouched but are considered as attempt failures. | |
| 45 // 3) Detailed delete status is returned. | |
| 46 FolderDeleteResult DeleteFiles(const base::FilePath& path, | |
| 47 const base::FilePath::StringType& pattern, | |
| 48 const int max_file_deleted); | |
|
grt (UTC plus 2)
2017/03/23 11:24:58
nit: no const on primitive in params in decls like
brucedawson
2017/03/23 18:53:26
To clarify/expand - 'const int' is meaningless in
chengx
2017/03/23 21:16:12
Acknowledged.
chengx
2017/03/23 21:16:12
Done.
| |
| 49 | |
| 50 // This method is similar to base::DeleteFile in file_util_win.cc | |
| 51 // with the following differences. | |
| 52 // 1) It has an input parameter |max_file_deleted| to specify the maximum files | |
| 53 // allowed to delete as well as the maximum attempt failures allowd per run. | |
| 54 // 2) It deletes only the files in |path|. All subdirectories in |path| are | |
| 55 // untouched but are considered as attempt failures. | |
| 56 // 3) |path| won't be removed even if all its contents are deleted successfully. | |
| 57 // 4) Detailed delete status is returned. | |
| 58 FolderDeleteResult DeleteDirectoryContent(const base::FilePath& path, | |
| 59 const int max_file_deleted); | |
| 60 | |
| 61 // This method firstly calls DeleteDirectoryContent() to delete the contents in | |
| 62 // |path|. If |path| is empty after the call, it is removed. | |
| 63 FolderDeleteResult DeleteDirectory(const base::FilePath& path, | |
| 64 const int max_file_deleted); | |
| 65 | |
| 66 // Deletes the directory at |path| and records the result to UMA. | |
| 67 void DeleteDirectoryAndLogResults(const base::FilePath& path, | |
| 68 const int max_file_deleted); | |
| 69 | |
| 70 #endif // CHROME_BROWSER_WIN_JUMPLIST_FILE_UTIL_H_ | |
| OLD | NEW |