diff options
author | benwells@chromium.org <benwells@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-11 06:10:07 +0000 |
---|---|---|
committer | benwells@chromium.org <benwells@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-11 06:10:07 +0000 |
commit | 914636612ba4bf032b809e1dcf09a11f87384515 (patch) | |
tree | 93fbe4da0ae3e9ac17064e64430a707621722450 /chrome/browser/shell_integration_unittest.cc | |
parent | c15faf37bc7ae6421489be2f69403e95df9ca237 (diff) | |
download | chromium_src-914636612ba4bf032b809e1dcf09a11f87384515.zip chromium_src-914636612ba4bf032b809e1dcf09a11f87384515.tar.gz chromium_src-914636612ba4bf032b809e1dcf09a11f87384515.tar.bz2 |
Remove app shortcuts when app is uninstalled on Linux.
To support this, shortcut creation on Linux for extensions has been modified so that the filename encodes the extension ID and the profile. Also, when creating shortcuts any existing shortcuts are removed first.
Web page shortcuts are not affected.
BUG=130456
TEST=Test uninstalling apps removes their shortcuts; test uninstalling
apps is not broken in any way; test shortcuts for web apps
are not broken in any way.
Review URL: https://chromiumcodereview.appspot.com/10698114
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146065 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/shell_integration_unittest.cc')
-rw-r--r-- | chrome/browser/shell_integration_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/shell_integration_unittest.cc b/chrome/browser/shell_integration_unittest.cc index 63921e7..31ea4a3 100644 --- a/chrome/browser/shell_integration_unittest.cc +++ b/chrome/browser/shell_integration_unittest.cc @@ -139,7 +139,7 @@ TEST(ShellIntegrationTest, GetDesktopShortcutTemplate) { } } -TEST(ShellIntegrationTest, GetDesktopShortcutFilename) { +TEST(ShellIntegrationTest, GetWebShortcutFilename) { const struct { const FilePath::CharType* path; const char* url; @@ -156,7 +156,7 @@ TEST(ShellIntegrationTest, GetDesktopShortcutFilename) { for (size_t i = 0; i < ARRAYSIZE_UNSAFE(test_cases); i++) { EXPECT_EQ(std::string(chrome::kBrowserProcessExecutableName) + "-" + test_cases[i].path, - ShellIntegrationLinux::GetDesktopShortcutFilename( + ShellIntegrationLinux::GetWebShortcutFilename( GURL(test_cases[i].url)).value()) << " while testing " << test_cases[i].url; } |