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_INSTALLER_SETUP_UPDATE_PER_USER_SHORTCUTS_IN_LOCATION_H_ | |
| 6 #define CHROME_INSTALLER_SETUP_UPDATE_PER_USER_SHORTCUTS_IN_LOCATION_H_ | |
| 7 | |
| 8 #include "chrome/installer/util/shell_util.h" | |
| 9 | |
| 10 namespace base { | |
| 11 class FilePath; | |
| 12 } | |
| 13 | |
| 14 class BrowserDistribution; | |
| 15 | |
| 16 namespace installer { | |
| 17 | |
| 18 // Sets |new_target_path| as the new target path of all shortcuts having an | |
| 19 // existing target path starting with |old_target_path_prefix| and ending with | |
| 20 // |old_target_path_suffix| in the location specified by |shortcut_location| and | |
| 21 // |dist|. | |
| 22 void UpdatePerUserShortcutsInLocation( | |
|
gab
2016/03/10 06:01:03
Actually, given this is not used from anywhere els
fdoray
2016/03/10 14:32:46
Done.
| |
| 23 const ShellUtil::ShortcutLocation shortcut_location, | |
| 24 BrowserDistribution* dist, | |
| 25 const base::FilePath& old_target_path_prefix, | |
| 26 const base::FilePath& old_target_path_suffix, | |
| 27 const base::FilePath& new_target_path); | |
| 28 | |
| 29 } // namespace installer | |
| 30 | |
| 31 #endif // CHROME_INSTALLER_SETUP_UPDATE_PER_USER_SHORTCUTS_IN_LOCATION_H_ | |
| OLD | NEW |