summaryrefslogtreecommitdiffstats
path: root/chrome/installer/util/util_constants.cc
diff options
context:
space:
mode:
authorkuchhal@chromium.org <kuchhal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-12 17:23:59 +0000
committerkuchhal@chromium.org <kuchhal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-12 17:23:59 +0000
commit6177e387dcc6a6d326b6c7175dfdce4951c59913 (patch)
treec738f91c384e0486f79596f49351f4b7901723fd /chrome/installer/util/util_constants.cc
parente5c8dcf75ad644cd45e54ce047bdccb0217e63e4 (diff)
downloadchromium_src-6177e387dcc6a6d326b6c7175dfdce4951c59913.zip
chromium_src-6177e387dcc6a6d326b6c7175dfdce4951c59913.tar.gz
chromium_src-6177e387dcc6a6d326b6c7175dfdce4951c59913.tar.bz2
Fix bugs related to making Chrome default browser on Vista and also do some cleanup.
- Stupid bug where we were failing if there was a space or '-' in the path to setup.exe - Some application still read default browser from Software\Classes\http even on Vista so set that - Some refactoring of apppaths changes to make a method private that doesn't need to be public. - Move constants in shell_util where rest of the shell related constants are. - Remove duplicate attempts to create ChromeHTML key BUG=7568,6732,6504 Review URL: http://codereview.chromium.org/21259 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9667 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer/util/util_constants.cc')
-rwxr-xr-xchrome/installer/util/util_constants.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/chrome/installer/util/util_constants.cc b/chrome/installer/util/util_constants.cc
index 3fa7d21..ab695e1 100755
--- a/chrome/installer/util/util_constants.cc
+++ b/chrome/installer/util/util_constants.cc
@@ -79,13 +79,6 @@ const wchar_t kChromeDll[] = L"chrome.dll";
const wchar_t kSetupExe[] = L"setup.exe";
const wchar_t kInstallerDir[] = L"Installer";
-// Note that the following value must be kept in sync with kChromeExe
-const wchar_t kAppPathsRegistryKey[] =
- L"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\chrome.exe";
-// Use the empty string to set the key default value.
-const wchar_t kAppPathsRegistryDefaultName[] = L"";
-const wchar_t kAppPathsRegistryPathName[] = L"Path";
-
const wchar_t kUninstallStringField[] = L"UninstallString";
const wchar_t kUninstallDisplayNameField[] = L"DisplayName";
} // namespace installer_util