Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2017 The Chromium Authors. All rights reserved. | 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 | 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 CHROME_BROWSER_WIN_JUMPLIST_FILE_UTIL_H_ | 5 #ifndef CHROME_BROWSER_WIN_JUMPLIST_FILE_UTIL_H_ |
| 6 #define CHROME_BROWSER_WIN_JUMPLIST_FILE_UTIL_H_ | 6 #define CHROME_BROWSER_WIN_JUMPLIST_FILE_UTIL_H_ |
| 7 | 7 |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_util.h" |
|
grt (UTC plus 2)
2017/03/27 08:03:39
i believe file_path.h is still correct based on iw
chengx
2017/03/27 18:32:41
Done.
grt (UTC plus 2)
2017/03/27 19:18:47
ping
chengx
2017/03/27 20:26:08
Ah, sorry... Now it is fixed.
| |
| 9 | 9 |
| 10 // Maximum number of icon files allowed to delete per jumplist update. | 10 // Maximum number of icon files allowed to delete per jumplist update. |
| 11 const int kFileDeleteLimit = 100; | 11 const int kFileDeleteLimit = 100; |
| 12 | 12 |
| 13 // Folder delete status enumeration, used in Delete* methods below. | 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 | 14 // This is used for UMA. Do not delete entries, and keep in sync with |
| 15 // histograms.xml. | 15 // histograms.xml. |
| 16 enum FolderDeleteResult { | 16 enum FolderDeleteResult { |
| 17 SUCCEED = 0, | 17 SUCCEED = 0, |
| 18 // File name's length exceeds MAX_PATH. This shouldn't happen. | 18 // File name's length exceeds MAX_PATH. This shouldn't happen. |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 29 FAIL_DELETE_MAX_FILES_WITH_ERRORS, | 29 FAIL_DELETE_MAX_FILES_WITH_ERRORS, |
| 30 // Fail to delete maximum files allowed when the maximum attempt failures | 30 // Fail to delete maximum files allowed when the maximum attempt failures |
| 31 // are hit. This may heppen. | 31 // are hit. This may heppen. |
| 32 FAIL_MAX_DELETE_FAILURES, | 32 FAIL_MAX_DELETE_FAILURES, |
| 33 // Fail to remove the raw empty directory. This may happen. | 33 // Fail to remove the raw empty directory. This may happen. |
| 34 FAIL_REMOVE_RAW_DIRECTORY, | 34 FAIL_REMOVE_RAW_DIRECTORY, |
| 35 // Add new items before this one, always keep this one at the end. | 35 // Add new items before this one, always keep this one at the end. |
| 36 END | 36 END |
| 37 }; | 37 }; |
| 38 | 38 |
| 39 // An enumeration indicating if a directory is empty or not. | 39 // An enumeration indicating if a directory exists or if it is empty or not. |
| 40 // This is used for UMA. Do not delete entries, and keep in sync with | 40 // This is used for UMA. Do not delete entries, and keep in sync with |
| 41 // histograms.xml. | 41 // histograms.xml. |
| 42 enum DirectoryEmptyStatus { | 42 enum DirectoryStatus { |
| 43 EMPTY = 0, | 43 EMPTY = 0, |
| 44 NON_EMPTY, | 44 NON_EMPTY, |
| 45 NON_EXIST, | |
| 45 // Add new items before this one, always keep this one at the end. | 46 // Add new items before this one, always keep this one at the end. |
| 46 EMPTY_STATUS_END | 47 DIRECTORY_STATUS_END |
| 47 }; | 48 }; |
| 48 | 49 |
| 49 // This method is similar to base::DeleteFileRecursive in | 50 // This method is similar to base::DeleteFileRecursive in |
| 50 // file_util_win.cc with the following differences. | 51 // file_util_win.cc with the following differences. |
| 51 // 1) It has an input parameter |max_file_deleted| to specify the maximum files | 52 // 1) It has an input parameter |max_file_deleted| to specify the maximum files |
| 52 // allowed to delete as well as the maximum attempt failures allowd per run. | 53 // allowed to delete as well as the maximum attempt failures allowd per run. |
| 53 // 2) It deletes only the files in |path|. All subdirectories in |path| are | 54 // 2) It deletes only the files in |path|. All subdirectories in |path| are |
| 54 // untouched but are considered as attempt failures. | 55 // untouched but are considered as attempt failures. |
| 55 // 3) Detailed delete status is returned. | 56 // 3) Detailed delete status is returned. |
| 56 FolderDeleteResult DeleteFiles(const base::FilePath& path, | 57 FolderDeleteResult DeleteFiles(const base::FilePath& path, |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 71 // This method firstly calls DeleteDirectoryContent() to delete the contents in | 72 // This method firstly calls DeleteDirectoryContent() to delete the contents in |
| 72 // |path|. If |path| is empty after the call, it is removed. | 73 // |path|. If |path| is empty after the call, it is removed. |
| 73 FolderDeleteResult DeleteDirectory(const base::FilePath& path, | 74 FolderDeleteResult DeleteDirectory(const base::FilePath& path, |
| 74 int max_file_deleted); | 75 int max_file_deleted); |
| 75 | 76 |
| 76 // Deletes the directory at |path| and records the result to UMA. | 77 // Deletes the directory at |path| and records the result to UMA. |
| 77 void DeleteDirectoryAndLogResults(const base::FilePath& path, | 78 void DeleteDirectoryAndLogResults(const base::FilePath& path, |
| 78 int max_file_deleted); | 79 int max_file_deleted); |
| 79 | 80 |
| 80 #endif // CHROME_BROWSER_WIN_JUMPLIST_FILE_UTIL_H_ | 81 #endif // CHROME_BROWSER_WIN_JUMPLIST_FILE_UTIL_H_ |
| OLD | NEW |