Chromium Code Reviews| Index: chrome/browser/importer/importer_unittest.cc |
| =================================================================== |
| --- chrome/browser/importer/importer_unittest.cc (revision 80528) |
| +++ chrome/browser/importer/importer_unittest.cc (working copy) |
| @@ -25,6 +25,7 @@ |
| #include "base/string_util.h" |
| #include "base/utf_string_conversions.h" |
| #include "base/values.h" |
| +#include "base/win/windows_version.h" |
|
tfarina
2011/04/05 23:10:47
This is already included at line 42.
Peter Kasting
2011/04/05 23:45:32
Ah, missed that, thanks.
|
| #include "chrome/browser/history/history_types.h" |
| #include "chrome/browser/importer/importer_bridge.h" |
| #include "chrome/browser/importer/importer_data_types.h" |
| @@ -205,7 +206,7 @@ |
| EXPECT_EQ(arraysize(kIEBookmarks), bookmark_count_); |
| EXPECT_EQ(1, history_count_); |
| #if 0 // This part of the test is disabled. See bug #2466 |
| - if (base::win::GetVersion() < base::win::VERSION_VISTA) |
| + if (base::win::GetVersion() >= base::win::VERSION_VISTA) |
| EXPECT_EQ(0, password_count_); |
| else |
| EXPECT_EQ(1, password_count_); |