diff options
author | nsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-25 20:26:44 +0000 |
---|---|---|
committer | nsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-25 20:26:44 +0000 |
commit | 309c8ff514d506364567d9e6095a295b8d5c3d3e (patch) | |
tree | eed57b5e9e9b725c02d665472b839b305227f04a /chrome/browser/importer/ie_importer.cc | |
parent | 47041caea97f2ffe6ecd5963684d3b57f7dde14d (diff) | |
download | chromium_src-309c8ff514d506364567d9e6095a295b8d5c3d3e.zip chromium_src-309c8ff514d506364567d9e6095a295b8d5c3d3e.tar.gz chromium_src-309c8ff514d506364567d9e6095a295b8d5c3d3e.tar.bz2 |
Fix all places where we used the GetWinVersion function
incorrectly.
bug:7802
Review URL: http://codereview.chromium.org/28128
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10366 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/importer/ie_importer.cc')
-rw-r--r-- | chrome/browser/importer/ie_importer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/importer/ie_importer.cc b/chrome/browser/importer/ie_importer.cc index 36b6cd7..0d0e3e7 100644 --- a/chrome/browser/importer/ie_importer.cc +++ b/chrome/browser/importer/ie_importer.cc @@ -451,7 +451,7 @@ bool IEImporter::GetFavoritesInfo(IEImporter::FavoritesInfo *info) { // is not recording in Vista's registry. So in Vista, we assume the Links // folder is under Favorites folder since it looks like there is not name // different in every language version of Windows Vista. - if (win_util::GetWinVersion() != win_util::WINVERSION_VISTA) { + if (win_util::GetWinVersion() < win_util::WINVERSION_VISTA) { // The Link folder name is stored in the registry. DWORD buffer_length = sizeof(buffer); if (!ReadFromRegistry(HKEY_CURRENT_USER, |