diff options
author | rahulk@google.com <rahulk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-28 23:27:49 +0000 |
---|---|---|
committer | rahulk@google.com <rahulk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-28 23:27:49 +0000 |
commit | 236ef33ebbb7aae61d5f36d8dc4570674819c810 (patch) | |
tree | 9cf6519ce421d317cea1e37ac343ad17cd64db2c /chrome/installer/util | |
parent | 42760abfbb3ef72fa2edf6e9720566c29e8557e8 (diff) | |
download | chromium_src-236ef33ebbb7aae61d5f36d8dc4570674819c810.zip chromium_src-236ef33ebbb7aae61d5f36d8dc4570674819c810.tar.gz chromium_src-236ef33ebbb7aae61d5f36d8dc4570674819c810.tar.bz2 |
Rename uninstall link from Chrome to localized "Google Chrome" string (value of reg key - DisplayName). Keep the uninstall key itself as Google Chrome in all languages as it is not visible to the user and helps in deleting the key in case user changes the system locale after installing Chrome.
BUG=1293755
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer/util')
-rw-r--r-- | chrome/installer/util/util_constants.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/installer/util/util_constants.cc b/chrome/installer/util/util_constants.cc index 9833671..d008647 100644 --- a/chrome/installer/util/util_constants.cc +++ b/chrome/installer/util/util_constants.cc @@ -76,7 +76,7 @@ const wchar_t kPublisherName[] = L"Google"; const wchar_t kApplicationName[] = L"Google Chrome"; const wchar_t kSetupExe[] = L"setup.exe"; -const wchar_t kUninstallRegPath[] = L"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Chrome"; +const wchar_t kUninstallRegPath[] = L"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Google Chrome"; const wchar_t kUninstallStringField[] = L"UninstallString"; const wchar_t kUninstallDisplayNameField[] = L"DisplayName"; } // namespace installer_util |