Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Side by Side Diff: chrome/installer/setup/update_per_user_shortcuts_in_location.h

Issue 1780693002: Fix the path of Chrome shortcuts from the installer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: self review Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698