Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 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_USER_PROFILES_CLEANUP_H_ | |
| 6 #define CHROME_BROWSER_USER_PROFILES_CLEANUP_H_ | |
| 7 | |
| 8 // Rename user data directory and disk cache directory during first laucnh of | |
| 9 // Chrome after downgrade. This function does not support root directory. | |
| 10 void ResetUserProfilesAfterDowngrade(); | |
|
grt (UTC plus 2)
2016/05/19 03:24:18
(pre-comment: make function/method doc comments de
grt (UTC plus 2)
2016/05/19 14:08:05
I wrote that before reading the code and seeing th
zmin
2016/05/19 23:08:03
Change the name to MoveUserDataForFirstRunAfterDow
| |
| 11 | |
| 12 // Delete the renamed user data directory and disk cache directory after Chrome | |
|
grt (UTC plus 2)
2016/05/19 03:24:18
suggestion:
// Deletes any user data directories l
zmin
2016/05/19 23:08:03
Done.
| |
| 13 // is lauched. | |
| 14 void RemoveUnusedUserProfilesInBlockingPool(); | |
|
grt (UTC plus 2)
2016/05/19 03:24:18
this poses an interesting design decision: should
zmin
2016/05/19 23:08:03
Done.
| |
| 15 | |
| 16 #endif // CHROME_BROWSER_USER_PROFILES_CLEANUP_H_ | |
| OLD | NEW |