diff options
author | mgiuca@chromium.org <mgiuca@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-05 10:09:29 +0000 |
---|---|---|
committer | mgiuca@chromium.org <mgiuca@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-05 10:09:29 +0000 |
commit | 111f0287058cd71709f4123d3c0095d0a4b066bc (patch) | |
tree | c42f8460bbc08d5f9158f4b8b577ca249e159447 /chrome/browser/web_applications | |
parent | bcc2f47984fd65d35dee5a5f659756d1216e89f1 (diff) | |
download | chromium_src-111f0287058cd71709f4123d3c0095d0a4b066bc.zip chromium_src-111f0287058cd71709f4123d3c0095d0a4b066bc.tar.gz chromium_src-111f0287058cd71709f4123d3c0095d0a4b066bc.tar.bz2 |
Linux: Deleting a profile deletes all app shortcuts associated with it.
This will search all locations where app shortcuts reside and delete any whose
filename matches the given profile.
BUG=236353
TEST=Create profile, create Desktop and app menu shortcuts, delete profile.
Check that Desktop and app menu shortcuts have been deleted for that profile,
and remain for any other profile.
Review URL: https://chromiumcodereview.appspot.com/21723002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215588 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/web_applications')
-rw-r--r-- | chrome/browser/web_applications/web_app_linux.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/web_applications/web_app_linux.cc b/chrome/browser/web_applications/web_app_linux.cc index 9b298fc..4371597 100644 --- a/chrome/browser/web_applications/web_app_linux.cc +++ b/chrome/browser/web_applications/web_app_linux.cc @@ -56,7 +56,7 @@ void UpdatePlatformShortcuts( } void DeleteAllShortcutsForProfile(const base::FilePath& profile_path) { - // TODO(mgiuca): Implement this on Linux. + ShellIntegrationLinux::DeleteAllDesktopShortcuts(profile_path); } } // namespace internals |